-
Notifications
You must be signed in to change notification settings - Fork 0
/
default
53 lines (41 loc) · 1.05 KB
/
default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
server {
listen 80 default_server;
listen [::]:80 default_server;
root /opt/www/;
index index.html index.htm index.nginx-debian.html;
server_name _;
location /osm_proxy/ {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X_FORWARDED_PROTO http;
proxy_set_header Host $http_host;
proxy_cache openstreetmap-backend-cache;
proxy_cache_valid 200 302 365d;
proxy_cache_valid 404 1m;
proxy_redirect off;
if (!-f $request_filename) {
rewrite ^/osm_proxy(/.*)$ $1 break;
proxy_pass http://openstreetmap_backend;
break;
}
}
location / {
try_files $uri $uri/ =404;
autoindex on;
}
#allow 2001:41d0:401:2000::2:e902;
#allow 2001:41d0:700:2311::6;
#allow 167.114.244.90;
###################
# OBERHALB KEINE ÄNDERUNGEN DURCHFÜHREN
###################
# Hier erlaubte Freifunk Konten einfügen:
# BSP:
#allow fd42:eb49:c0b5:4242:62e3:27ff:fec7:91ee;
###################
#
###################
###################
# UNTERHALB KEINE ÄNDERUNGEN DURCHFÜHREN
###################
#deny all;
}