<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>nginx &#8211; SMsoft &#8211; informatica e dintorni</title>
	<atom:link href="https://blog.smsoft.it/category/nginx/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.smsoft.it</link>
	<description>consigli settimanali su MacOS, GNU/Linux ed Open Source</description>
	<lastBuildDate>Mon, 26 Jan 2026 10:04:12 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=97041</generator>
	<item>
		<title>Certbot: The Requested nginx Plugin Does Not Appear to Be Installed</title>
		<link>https://blog.smsoft.it/2025/07/01/certbot-the-requested-nginx-plugin-does-not-appear-to-be-installed/</link>
					<comments>https://blog.smsoft.it/2025/07/01/certbot-the-requested-nginx-plugin-does-not-appear-to-be-installed/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 01 Jul 2025 08:30:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[let's encrypt]]></category>
		<category><![CDATA[ssl]]></category>
		<guid isPermaLink="false">https://blog.smsoft.it/?p=6791</guid>

					<description><![CDATA[Provando a generare un nuovo certificato con certbot di Let&#8217;s Encrypt ed usando come webserver nginx ho ottenuto questo messaggio: In questo caso basterà installare il necesario plugin e poi riprovare: verificare che il plugin sia installato su certbot: e riprovare: enjoy!]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Provando a generare un nuovo certificato con certbot di Let&#8217;s Encrypt ed usando come webserver nginx ho ottenuto questo messaggio:</p>



<pre class="wp-block-code"><code>The Requested nginx Plugin Does Not Appear to Be Installed</code></pre>



<p class="wp-block-paragraph">In questo caso basterà installare il necesario plugin e poi riprovare:</p>



<pre class="wp-block-code"><code>apt install python3-certbot-nginx</code></pre>



<p class="wp-block-paragraph">verificare che il plugin sia installato su certbot:</p>



<pre class="wp-block-code"><code>certbot plugins</code></pre>



<p class="wp-block-paragraph">e riprovare:</p>



<pre class="wp-block-code"><code>certbot --nginx</code></pre>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">enjoy!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.smsoft.it/2025/07/01/certbot-the-requested-nginx-plugin-does-not-appear-to-be-installed/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>nginx: Proteggere una location e creare un file htpasswd</title>
		<link>https://blog.smsoft.it/2024/07/23/nginx-proteggere-una-location-e-creare-un-file-htpasswd/</link>
					<comments>https://blog.smsoft.it/2024/07/23/nginx-proteggere-una-location-e-creare-un-file-htpasswd/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 23 Jul 2024 08:30:00 +0000</pubDate>
				<category><![CDATA[nginx]]></category>
		<category><![CDATA[htpasswd]]></category>
		<guid isPermaLink="false">https://blog.smsoft.it/?p=6378</guid>

					<description><![CDATA[Per proteggere una location su nginx, ad esempio /curioso possiamo inserire nel file del nostro virtualhost nginx il seguente codice: Per generare i dati (username/password) per l&#8217;accesso, possiamo usare il seguente comando: enjoy!]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Per proteggere una location su nginx, ad esempio /curioso possiamo inserire nel file del nostro virtualhost nginx il seguente codice:</p>



<pre class="wp-block-code"><code>location ~ ^/curioso/.* {
        auth_basic            "Admin";
        auth_basic_user_file  /etc/nginx/nginx.htpasswd;
}</code></pre>



<p class="wp-block-paragraph">Per generare i dati (username/password) per l&#8217;accesso, possiamo usare il seguente comando:</p>



<pre class="wp-block-code"><code>printf "<code>read -p Username:\ ; echo $REPLY</code>:<code>openssl passwd -apr1</code>\n" >>  >> /etc/nginx/nginx.htpasswd</code></pre>



<p class="wp-block-paragraph">enjoy!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.smsoft.it/2024/07/23/nginx-proteggere-una-location-e-creare-un-file-htpasswd/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
