From 0c0d62693458e7c1248616125b41843b2c3daf97 Mon Sep 17 00:00:00 2001 From: Dorian HODIN Date: Mon, 1 Jul 2024 11:10:37 +0200 Subject: [PATCH] Supprimer 'daidokoro/nginx.conf' --- daidokoro/nginx.conf | 49 -------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 daidokoro/nginx.conf diff --git a/daidokoro/nginx.conf b/daidokoro/nginx.conf deleted file mode 100644 index d5c0cec..0000000 --- a/daidokoro/nginx.conf +++ /dev/null @@ -1,49 +0,0 @@ -# the events block is required -events{} - -http { - # include the default mime.types to map file extensions to MIME types - include /etc/nginx/mime.types; - - server { - # set the root directory for the server (we need to copy our - # application files here) - root /usr/share/nginx/html; - - # set the default index file for the server (Angular generates the - # index.html file for us and it will be in the above directory) - index index.html; - - # specify the configuration for the '/' location - location / { - # try to serve the requested URI. if that fails then try to - # serve the URI with a trailing slash. if that fails, then - # serve the index.html file; this is needed in order to serve - # Angular routes--e.g.,'localhost:8080/customer' will serve - # the index.html file - try_files $uri $uri/ /index.html; - } - } -} - -# server { -# listen 0.0.0.0:8080; -# listen [::]:8080; -# default_type application/octet-stream; - -# gzip on; -# gzip_comp_level 6; -# gzip_vary on; -# gzip_min_length 1000; -# gzip_proxied any; -# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; -# gzip_buffers 16 8k; -# gunzip on; -# client_max_body_size 256M; - -# root /usr/share/nginx/html; - -# location / { -# try_files $uri $uri/ /index.html =404; -# } -# }