Files
doc.2020.app/archive/simple_sample.nginx.conf
2021-11-17 20:08:20 +00:00

16 lines
293 B
Plaintext

server {
listen 80 default_server;
listen [::]:80 ;
index index.html index.htm index.nginx-debian.html;
server_name _;
root /var/www/html;
location / {
include uwsgi_params;
uwsgi_pass unix:///srv/simple_sample_flat_index/uwsgi.sock;
}
}