Files
flask-fet-fotos/foto_gallery.nginx.conf
2020-03-14 23:07:14 +00:00

16 lines
275 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:///var/run/fet_fotos.sock
}
}