aboutsummaryrefslogtreecommitdiffstats
path: root/nginx
diff options
context:
space:
mode:
Diffstat (limited to 'nginx')
-rw-r--r--nginx/nginx.conf17
1 files changed, 0 insertions, 17 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
deleted file mode 100644
index 822dd29..0000000
--- a/nginx/nginx.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-server {
- listen 80;
- listen [::]:80;
- server_name _;
-
- root /usr/share/nginx/html;
- index index.html index.htm;
-
- location / {
- try_files $uri $uri/ /index.html;
- }
-
- error_page 404 /404.html;
- location = /404.html {
- internal;
- }
-} \ No newline at end of file