pyrom/nginx.conf
2025-06-29 18:17:15 +03:00

20 lines
306 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
listen 8080;
server_name localhost;
location /static/ {
alias /data/static/;
}
location / {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
}
}