ncpb/nginx.conf
2021-02-05 02:09:44 +01:00

21 lines
297 B
Nginx Configuration File

events {}
http {
include mime.types;
server {
root /app;
listen 80;
index index.html;
location / {
try_files ${DOLLAR}uri /index.html;
}
location = /api/endpoint {
return 200 '${ENDPOINT}';
}
}
}