Kyoo/nginx.conf.template
2022-09-28 13:54:59 +09:00

13 lines
151 B
Plaintext

server {
listen ${PORT};
root /usr/share/nginx/html;
location / {
proxy_pass ${FRONT_URL};
}
location /api/ {
proxy_pass ${BACK_URL}/;
}
}