<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://192.168.180.206:8001/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://192.168.180.206:8001/feed.php">
        <title>wiki.niziak.spox.org - sw:nginx</title>
        <description></description>
        <link>http://192.168.180.206:8001/</link>
        <image rdf:resource="http://192.168.180.206:8001/_media/wiki:dokuwiki.svg" />
       <dc:date>2026-05-12T23:30:41+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://192.168.180.206:8001/sw:nginx:aggregating?rev=1750155068&amp;do=diff"/>
                <rdf:li rdf:resource="http://192.168.180.206:8001/sw:nginx:client_cert?rev=1731861751&amp;do=diff"/>
                <rdf:li rdf:resource="http://192.168.180.206:8001/sw:nginx:issue?rev=1777026742&amp;do=diff"/>
                <rdf:li rdf:resource="http://192.168.180.206:8001/sw:nginx:revproxy?rev=1734594697&amp;do=diff"/>
                <rdf:li rdf:resource="http://192.168.180.206:8001/sw:nginx:tuning?rev=1742242620&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://192.168.180.206:8001/_media/wiki:dokuwiki.svg">
        <title>wiki.niziak.spox.org</title>
        <link>http://192.168.180.206:8001/</link>
        <url>http://192.168.180.206:8001/_media/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://192.168.180.206:8001/sw:nginx:aggregating?rev=1750155068&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-06-17T10:11:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>aggregating location</title>
        <link>http://192.168.180.206:8001/sw:nginx:aggregating?rev=1750155068&amp;do=diff</link>
        <description>aggregating location

Scenario: http download mirror for Yocto project. Each product has own download subdirectory, but some downloads can be reused, so make one http endpoint which search through all subdirectories.


    location = /downloads/ {
        root /srv;
        autoindex on;
    }

    location ~ ^/downloads/.*/$ {
        root /srv;
        autoindex on;
    }

    location ~ ^/downloads/(.*)$ {
        root /srv/downloads;
        try_files /astra/$1
                  /genio/$1
  …</description>
    </item>
    <item rdf:about="http://192.168.180.206:8001/sw:nginx:client_cert?rev=1731861751&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-11-17T16:42:31+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Client Certificates</title>
        <link>http://192.168.180.206:8001/sw:nginx:client_cert?rev=1731861751&amp;do=diff</link>
        <description>Client Certificates

Using Client-Certificate based authentication with NGINX on Ubuntu

	*  How to allow specific SSL client certificates in Nginx?

Nginx Proxy Manager:

	*   Client certificate support #2956 
	*   Add client certificate support #768</description>
    </item>
    <item rdf:about="http://192.168.180.206:8001/sw:nginx:issue?rev=1777026742&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-24T10:32:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Issue</title>
        <link>http://192.168.180.206:8001/sw:nginx:issue?rev=1777026742&amp;do=diff</link>
        <description>Issue

key values mismatch

**failed (SSL: error:05800074:x509 certificate routines::key values mismatch)**&lt;/codE&gt;

But:
  * Checked modulus of cert and key = OK
  * Compare public key from cert and key = OK
  * the exactly same cert+key pair works with another nginx
Solution:
  * one of virtual hosts (development env) containes path to another .crt than .key


=====  Too many open files =====

Some request returns 404 and error is logged in &#039;&#039;error.log&#039;&#039;
&lt;code&gt;
[crit] 124477#124477: accept4() f…</description>
    </item>
    <item rdf:about="http://192.168.180.206:8001/sw:nginx:revproxy?rev=1734594697&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-12-19T07:51:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>revproxy</title>
        <link>http://192.168.180.206:8001/sw:nginx:revproxy?rev=1734594697&amp;do=diff</link>
        <description>revproxy

variables

$host vs $http_host vs $server_name

From: What is the difference between Nginx variables $host, $http_host, and $server_name?

You should almost always use $host, as it&#039;s the only one guaranteed to have something sensible regardless of how the user-agent behaves, unless you specifically need the semantics of one of the other variables.</description>
    </item>
    <item rdf:about="http://192.168.180.206:8001/sw:nginx:tuning?rev=1742242620&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-03-17T20:17:00+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>performance</title>
        <link>http://192.168.180.206:8001/sw:nginx:tuning?rev=1742242620&amp;do=diff</link>
        <description>performance

&lt;https://medium.com/@tynwthpq/tune-nginx-performance-fbba6a7f4a25&gt;

&lt;https://gist.github.com/denji/8359866&gt;</description>
    </item>
</rdf:RDF>
