summaryrefslogtreecommitdiff
path: root/pse-dashboard/conf.d
diff options
context:
space:
mode:
Diffstat (limited to 'pse-dashboard/conf.d')
-rw-r--r--pse-dashboard/conf.d/nginx.conf11
1 files changed, 11 insertions, 0 deletions
diff --git a/pse-dashboard/conf.d/nginx.conf b/pse-dashboard/conf.d/nginx.conf
new file mode 100644
index 0000000..063656a
--- /dev/null
+++ b/pse-dashboard/conf.d/nginx.conf
@@ -0,0 +1,11 @@
+server {
+
+ listen 80;
+ server_name pse-frontend;
+
+ location / {
+ root /usr/share/nginx/html/;
+ try_files $uri $uri/ /index.html =404;
+ }
+}
+