blob: 1a849da2b859d29f7fa11baaee5d744e1bd39057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
upstream afterklein-gitit {
server 127.0.0.1:5005;
}
server {
listen 80;
listen [::]:80;
server_name afterklein.robocracy.org;
access_log /var/log/nginx/access.log;
location / {
root /srv/http/default/www/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://afterklein-gitit;
}
}
|