mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
19 lines
369 B
Plaintext
19 lines
369 B
Plaintext
server {
|
|
listen ${PORT};
|
|
root /usr/share/nginx/html;
|
|
|
|
location / {
|
|
proxy_pass ${FRONT_URL};
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass ${BACK_URL}/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
}
|