mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -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}/;
|
|
}
|
|
}
|