1
0
mirror of synced 2024-12-03 01:57:18 +01:00
bemaniutils/examples/nginx/proxy
2019-12-08 21:43:49 +00:00

10 lines
158 B
Plaintext

server {
listen 80;
server_tokens off;
location / {
include uwsgi_params;
uwsgi_pass unix:/path/to/your/root/proxy.sock;
}
}