mirror of
https://github.com/Redume/Kekkai.git
synced 2025-03-13 12:04:38 +03:00
15 lines
340 B
Nginx Configuration File
15 lines
340 B
Nginx Configuration File
location / {
|
|
proxy_pass http://web:3050;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
|
|
location /robots.txt {
|
|
alias robots.txt;
|
|
}
|
|
|
|
location /favicon.ico {
|
|
alias assets/logo.png;
|
|
}
|