add nginx config

first_own_trials
Gandalf 2023-06-28 13:41:45 +02:00
parent b1bfab6bbc
commit 29ce681599
1 changed files with 19 additions and 0 deletions

19
sketch/HambiMap Normal file
View File

@ -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;
}
}