<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to install GLPI with Nginx on Debian 10?	</title>
	<atom:link href="https://www.osradar.com/install-glpi-nginx-on-debian-10/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 18 Sep 2020 08:11:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>
		By: Marcel		</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-8734</link>

		<dc:creator><![CDATA[Marcel]]></dc:creator>
		<pubDate>Fri, 18 Sep 2020 08:11:29 +0000</pubDate>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339#comment-8734</guid>

					<description><![CDATA[Hello I am new to webserver. Whenever i want to access the page for glpi i get an error 502 bad gateway although i followed  all instructions]]></description>
			<content:encoded><![CDATA[<p>Hello I am new to webserver. Whenever i want to access the page for glpi i get an error 502 bad gateway although i followed  all instructions</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: angeloma		</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-4313</link>

		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 15 May 2020 15:36:27 +0000</pubDate>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339#comment-4313</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-4308&quot;&gt;Gunther&lt;/a&gt;.

Post updated! Thanks]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-4308">Gunther</a>.</p>
<p>Post updated! Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gunther		</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-4310</link>

		<dc:creator><![CDATA[Gunther]]></dc:creator>
		<pubDate>Fri, 15 May 2020 08:06:42 +0000</pubDate>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339#comment-4310</guid>

					<description><![CDATA[Secondly to avoid the error: Web access to the files directory should not be allowed
Add  these lines to /etc/nginx/sites-available/glpi: 
location ~ /files{
 deny all;
 }

It should look like this:
server {
listen 80;
server_name glpi.osradar.test;;

root /var/www/html/glpi;
index index.php;

location / {try_files $uri $uri/ index.php;}

location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_param SERVER_NAME $host;
}
location ~ /files{
deny all;
}
}]]></description>
			<content:encoded><![CDATA[<p>Secondly to avoid the error: Web access to the files directory should not be allowed<br />
Add  these lines to /etc/nginx/sites-available/glpi:<br />
location ~ /files{<br />
 deny all;<br />
 }</p>
<p>It should look like this:<br />
server {<br />
listen 80;<br />
server_name glpi.osradar.test;;</p>
<p>root /var/www/html/glpi;<br />
index index.php;</p>
<p>location / {try_files $uri $uri/ index.php;}</p>
<p>location ~ \.php$ {<br />
fastcgi_pass 127.0.0.1:9000;<br />
fastcgi_index index.php;<br />
include /etc/nginx/fastcgi_params;<br />
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;<br />
include fastcgi_params;<br />
fastcgi_param SERVER_NAME $host;<br />
}<br />
location ~ /files{<br />
deny all;<br />
}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gunther		</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-4308</link>

		<dc:creator><![CDATA[Gunther]]></dc:creator>
		<pubDate>Fri, 15 May 2020 06:39:16 +0000</pubDate>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339#comment-4308</guid>

					<description><![CDATA[Thank you for the turorial and efforts!
I found that there is a backslash missing in the part:
The next step is to create a new Nginx configuration for GLPI. In this sense, it is convenient to make a new server block.
And add the following:
in the text you have
location ~ .php$ {
and in the picrture you have
location ~ \.php$ {
If users copy the text, it would be wrong]]></description>
			<content:encoded><![CDATA[<p>Thank you for the turorial and efforts!<br />
I found that there is a backslash missing in the part:<br />
The next step is to create a new Nginx configuration for GLPI. In this sense, it is convenient to make a new server block.<br />
And add the following:<br />
in the text you have<br />
location ~ .php$ {<br />
and in the picrture you have<br />
location ~ \.php$ {<br />
If users copy the text, it would be wrong</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: angeloma		</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-2546</link>

		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 29 Feb 2020 14:33:09 +0000</pubDate>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339#comment-2546</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-2540&quot;&gt;mtxx&lt;/a&gt;.

Check if you have Apache installed. If Apache is installed, remove it.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-2540">mtxx</a>.</p>
<p>Check if you have Apache installed. If Apache is installed, remove it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: mtxx		</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comment-2540</link>

		<dc:creator><![CDATA[mtxx]]></dc:creator>
		<pubDate>Fri, 28 Feb 2020 22:22:22 +0000</pubDate>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339#comment-2540</guid>

					<description><![CDATA[Hi,
very nice tutorial, but I have question how you resolve this problem (from pic no 7.):

&quot;Web access to files directory is protected
Web access to the files directory should not be allowed
Check the .htaccess file and the web server configuration.&quot;

nginx not support .htaccess….]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
very nice tutorial, but I have question how you resolve this problem (from pic no 7.):</p>
<p>&#8220;Web access to files directory is protected<br />
Web access to the files directory should not be allowed<br />
Check the .htaccess file and the web server configuration.&#8221;</p>
<p>nginx not support .htaccess….</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
