a nice production stack on my laptop for my personal velociy system

This commit is contained in:
2024-12-07 13:05:12 -06:00
parent 22bc3286ff
commit f3b4b31b5a
14 changed files with 171 additions and 74 deletions

28
wger/config/nginx.conf Normal file
View File

@@ -0,0 +1,28 @@
upstream wger {
server wger-web:2003;
}
server {
listen 80;
location / {
proxy_pass http://wger;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_redirect off;
}
location /static/ {
alias /wger/static/;
}
location /media/ {
alias /wger/media/;
}
# Increase max body size to allow for video uploads
client_max_body_size 100M;
}