HambiMap/sketch/HambiMap

20 lines
358 B
Plaintext

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