Nginx Webserver

Welche Module sind dabei?

nginx -V

z.B: für realip:

nginx -V 2>&1 | egrep –color -o 'realip_module'

Config testen

nginx -t

Ports testen

sudo lsof -i :80 -s TCP:LISTEN

Standard Rev Proxy Konfiguration

proxy_pass [http://localhost:8000/uri/](http://localhost:8000/uri/);

Rev. Proxy mit lokalen Unix-domain Socket

proxy_pass [http://unix:/tmp/backend.socket:/uri/](http://unix:/tmp/backend.socket:/uri/);

Quelle: http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass

Zuletzt bearbeitet von @admin 2025-11-20T08:03:41Z