commit 9db7f52caa0e31e10ed609d2403b9008f9769887 Author: Jeremy Lecour Date: Tue Nov 3 11:28:46 2020 +0100 ajout des confs Nginx de base + html diff --git a/index-81.html b/index-81.html new file mode 100644 index 0000000..802d2a7 --- /dev/null +++ b/index-81.html @@ -0,0 +1,49 @@ + + + + + + + atlantide-template + + + + +
+

atlantide-haproxy : port 81

+ + +
+ + + diff --git a/index-82.html b/index-82.html new file mode 100644 index 0000000..ee5c61f --- /dev/null +++ b/index-82.html @@ -0,0 +1,49 @@ + + + + + + + atlantide-template + + + + +
+

atlantide-haproxy : port 82

+ + +
+ + + diff --git a/vhost-81.conf b/vhost-81.conf new file mode 100644 index 0000000..0105c2d --- /dev/null +++ b/vhost-81.conf @@ -0,0 +1,11 @@ +server { + listen 81; + server_name _; + root /var/www/81; + index index.html; + location / { + # First attempt to serve request as file, then + # as directory, then fall back to displaying a 404. + try_files $uri $uri/ =404; + } +} diff --git a/vhost-82.conf b/vhost-82.conf new file mode 100644 index 0000000..8908e0c --- /dev/null +++ b/vhost-82.conf @@ -0,0 +1,11 @@ +server { + listen 82; + server_name _; + root /var/www/82; + index index.html; + location / { + # First attempt to serve request as file, then + # as directory, then fall back to displaying a 404. + try_files $uri $uri/ =404; + } +}