1
0
mirror of synced 2024-11-14 18:07:36 +01:00
bemaniutils/examples/nginx/proxy.nginx
2020-05-12 21:00:54 +00:00

10 lines
158 B
Nginx Configuration File

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