mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
13 lines
217 B
Text
13 lines
217 B
Text
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
proxy_pass http://app:2244;
|
|
}
|
|
|
|
location /static/ {
|
|
root /srv/copanier_static/;
|
|
index index.html;
|
|
}
|
|
}
|