21 lines
297 B
Nginx Configuration File
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}';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|