aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/nginx/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'ui-react/nginx/nginx.conf')
-rw-r--r--ui-react/nginx/nginx.conf17
1 files changed, 17 insertions, 0 deletions
diff --git a/ui-react/nginx/nginx.conf b/ui-react/nginx/nginx.conf
new file mode 100644
index 000000000..758a646e5
--- /dev/null
+++ b/ui-react/nginx/nginx.conf
@@ -0,0 +1,17 @@
+server {
+
+ listen 80;
+
+ location / {
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+ try_files $uri $uri/ /index.html;
+ }
+
+ error_page 500 502 503 504 /50x.html;
+
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+
+} \ No newline at end of file