mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-01 19:17:16 -04:00
13 lines
151 B
Plaintext
13 lines
151 B
Plaintext
server {
|
|
listen ${PORT};
|
|
root /usr/share/nginx/html;
|
|
|
|
location / {
|
|
proxy_pass ${FRONT_URL};
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass ${BACK_URL}/;
|
|
}
|
|
}
|