10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
|
server {
|
||
|
listen 573;
|
||
|
server_tokens off;
|
||
|
|
||
|
location / {
|
||
|
include uwsgi_params;
|
||
|
uwsgi_pass unix:/path/to/your/root/services.sock;
|
||
|
}
|
||
|
}
|