ncpb/nginx.conf

21 lines
297 B
Nginx Configuration File
Raw Normal View History

2021-02-05 01:09:44 +00:00
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}';
}
}
}