20 lines
297 B
Nginx Configuration File
20 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 ^~ /index.php/s/ {
|
|
proxy_pass '${ENDPOINT}';
|
|
}
|
|
}
|
|
|
|
}
|