mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-03-21 17:24:33 -05:00
10 lines
162 B
Nginx Configuration File
10 lines
162 B
Nginx Configuration File
server {
|
|
listen 573;
|
|
server_tokens off;
|
|
|
|
location / {
|
|
include uwsgi_params;
|
|
uwsgi_pass unix:/path/to/your/root/services.sock;
|
|
}
|
|
}
|