initial commit

This commit is contained in:
Philip Henning 2025-09-05 10:39:25 +02:00
commit eb2ec18ad9
6 changed files with 357 additions and 0 deletions

View file

@ -0,0 +1,19 @@
server {
listen 8080;
server_name default_server;
root /var/www;
location / {
include uwsgi_params;
uwsgi_pass bitpoll:3008;
}
location /static {
expires 14d;
alias /opt/static;
}
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
}