mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
11 lines
262 B
Text
11 lines
262 B
Text
root /srv/copanier;
|
|
|
|
location /static/ {
|
|
alias /srv/copanier/venv/lib/python3.7/site-packages/copanier/static/;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://copanier/;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
}
|