From 9db7f52caa0e31e10ed609d2403b9008f9769887 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Tue, 3 Nov 2020 11:28:46 +0100 Subject: [PATCH] ajout des confs Nginx de base + html --- index-81.html | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ index-82.html | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ vhost-81.conf | 11 +++++++++++ vhost-82.conf | 11 +++++++++++ 4 files changed, 120 insertions(+) create mode 100644 index-81.html create mode 100644 index-82.html create mode 100644 vhost-81.conf create mode 100644 vhost-82.conf 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; + } +}