ncpb/nginx.conf

20 lines
297 B
Nginx Configuration File
Raw Permalink 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;
}
2021-02-12 15:27:34 +00:00
location ^~ /index.php/s/ {
proxy_pass '${ENDPOINT}';
2021-02-05 01:09:44 +00:00
}
}
}