Dump der Konfiguration:
$ nginx -T
...
server {
...
location / {
root /usr/share/nginx/html;
...
}
...
}
Was Sie erhalten, kann unterschiedlich sein, da es davon abhängt, wie Ihr nginx
konfiguriert/installiert wurde.
Referenzen:
Update: Es gibt einige Verwirrung in der Frage, ob/wann die -T
Option wurde hinzugefügt zu nginx
. Sie wurde in der Manpage von vl-homutov am 16. Juni 2015, die Teil des v1.9.2 Veröffentlichung . Es wird sogar erwähnt in die Versionshinweise . Die -T
ist in allen Ländern, in denen die Option nginx
Version, einschließlich der unter Ubuntu 16.04.1 LTS verfügbaren Version:
root@23cc8e58640e:/# nginx -h
nginx version: nginx/1.10.0 (Ubuntu)
Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-T : test configuration, dump it and exit
-q : suppress non-error messages during configuration testing
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/share/nginx/)
-c filename : set configuration file (default: /etc/nginx/nginx.conf)
-g directives : set global directives out of configuration file