From 25a31dc3e61a5842e0b78dcce5d7dc2f70bef268 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Wed, 20 Sep 2023 10:17:02 +0200 Subject: [PATCH] add default nginx conf --- nginx.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 00000000..802f872c --- /dev/null +++ b/nginx.conf @@ -0,0 +1,10 @@ +server_tokens off; +server { + listen 8080; + server_name localhost; + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri /index.html; + } +} \ No newline at end of file -- GitLab