wiki:nginx_troubleshooting
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
wiki:nginx_troubleshooting [2022/09/23 12:01] – [See also] add nginx_redirect_rewrites antisa | wiki:nginx_troubleshooting [2024/09/25 08:37] (current) – [The following signatures were invalid: EXPKEYSIG ABF5BD827BD9BF62 nginx signing key] update link to nginx repo antisa | ||
---|---|---|---|
Line 23: | Line 23: | ||
</ | </ | ||
- | ====== Tested on ====== | + | ==== Tested on ==== |
* nginx/ | * nginx/ | ||
+ | |||
+ | ===== nginx seems to serve from wrong vhost? ===== | ||
+ | When you visit one site let's say a.example.com and you get b.example.com, | ||
+ | * it could be that the // | ||
+ | * pay attention to http vs. https and redirects; if you get redirected from http to https and this is not what you want, redirect could be done by some proxied app (for example wordpress might do this via its WP_HOME and WP_SITEURL variables) and then the request will happen to 443 port on which nginx will serve the first vhost that is listening on this port and the // | ||
+ | * Also listen directive gives precedence to IP:PORT than to only PORT, so nginx might serve for example wrong certificates (i.e. self-signed ones) if there is a config like | ||
+ | |||
+ | <code nginx> | ||
+ | listen 1.2.3.4:443 ssl; | ||
+ | server_name de_verticals_upstream; | ||
+ | |||
+ | ssl_certificate | ||
+ | ... | ||
+ | </ | ||
+ | and somewhere else you have | ||
+ | <code nginx> | ||
+ | ... | ||
+ | listen 443 ssl; | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ===== Location matching when serving content ===== | ||
+ | Remember that nginx will first match blocks defined with regular expressions('' | ||
+ | |||
+ | <code nginx> | ||
+ | server { | ||
+ | # port 80 will be matched by default | ||
+ | server_name example.org; | ||
+ | | ||
+ | location ~*/ { | ||
+ | rewrite ^/(.*)$ https:// | ||
+ | } | ||
+ | |||
+ | # Letsencrypt challenge location | ||
+ | location / | ||
+ | return 301 http:// | ||
+ | } | ||
+ | |||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | The request for https:// | ||
+ | |||
+ | Solution to this would be to use either strict matching '' | ||
+ | |||
+ | <code nginx> | ||
+ | # Letsencrypt challenge location | ||
+ | location ^~ / | ||
+ | return 301 http:// | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | So modifier priority matching is as follows: | ||
+ | |||
+ | 1. `=` Exact match, terminate immediately | ||
+ | 2. `^~` Longest-prefix-match (not regex!) | ||
+ | 3. `~`, `~*` Regular expression case sensitive/ | ||
+ | 4. `/` | ||
+ | |||
+ | <WRAP center round help 60%> | ||
+ | If you are using the grouping of URIs in parenthesis e.g. | ||
+ | |||
+ | location ^~ / | ||
+ | | ||
+ | This won't work. Use the `~*` modifier for that. | ||
+ | </ | ||
+ | |||
+ | ==== Tested on ==== | ||
+ | * nginx/ | ||
+ | |||
+ | |||
+ | ===== The following signatures were invalid: EXPKEYSIG ABF5BD827BD9BF62 nginx signing key ===== | ||
+ | |||
+ | Run: | ||
+ | apt-key add / | ||
+ | |||
+ | After you've added the [[https:// | ||
+ | |||
+ | ==== Tested on ==== | ||
+ | * nginx/ | ||
+ | * Debian 10 Buster | ||
====== See also ====== | ====== See also ====== | ||
Line 30: | Line 113: | ||
* [[wiki: | * [[wiki: | ||
* [[wiki: | * [[wiki: | ||
+ | * [[wiki: | ||
====== References ====== | ====== References ====== | ||
+ | * [[https:// | ||
+ | * https:// | ||
wiki/nginx_troubleshooting.1663934471.txt.gz · Last modified: 2022/09/23 12:01 by antisa