From 246174c3655432925ce0aa9b615b8b24216b4084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Wed, 3 Feb 2021 12:29:56 +0100 Subject: [PATCH] Removing useless file --- front/nginx-vhost.conf | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 front/nginx-vhost.conf diff --git a/front/nginx-vhost.conf b/front/nginx-vhost.conf deleted file mode 100644 index 81e10f4a..00000000 --- a/front/nginx-vhost.conf +++ /dev/null @@ -1,14 +0,0 @@ -server { - listen 8000; - listen [::]:8000; - server_name localhost; - - location / { - root /usr/share/nginx/html; - index index.html index.htm; - } - - location ~ ^/[@_]/ { - try_files $uri $uri/ /index.html; - } -}