From 29ce681599e59aaea6ca2ce7faf83dee79b77fce Mon Sep 17 00:00:00 2001 From: Gandalf Date: Wed, 28 Jun 2023 13:41:45 +0200 Subject: [PATCH] add nginx config --- sketch/HambiMap | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 sketch/HambiMap diff --git a/sketch/HambiMap b/sketch/HambiMap new file mode 100644 index 0000000..2e9c330 --- /dev/null +++ b/sketch/HambiMap @@ -0,0 +1,19 @@ +server { + listen 8080; + server_name HambiMapAlt; + location / { + root /home/bernhardt/Entwicklung/HambiMap/sketch/alt; + } +} + +server { + listen 1314; + server_name HambiMap; + location /leaflet/ { + alias /home/bernhardt/Entwicklung/HambiMap/leaflet/Leaflet-1.9.4/; + autoindex on; + } + location / { + root /home/bernhardt/Entwicklung/HambiMap/sketch/html; + } +}