1
0
mirror of synced 2024-11-15 02:17:36 +01:00
bemaniutils/examples/nginx/proxy.nginx

10 lines
158 B
Plaintext
Raw Normal View History

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