Files
ota-admin-portal/nginx.conf
John Wu 7a1125cb1f CEC-180 Cache Control (#30)
* Set cache expire to 1 day
Add snapshot tests for new screens

* Fix table pagniation random ids for snapshot tests

* Auto reload on chunk load error

* OTA Admin Portal => Admin Portal
2021-04-13 17:52:10 -07:00

11 lines
170 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
expires 1d;
location / {
try_files $uri /index.html;
}
}