summaryrefslogtreecommitdiff
path: root/debian/etc/nginx/sites-available/anastasis
blob: 4b39229199c5be768590d62e69b466ff9035f318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
  listen 80;
  listen [::]:80;

  # server_name example.com

  location /anastasis/ {
    proxy_pass http://unix:/run/anastasis/httpd/anastasis-http.sock;
    proxy_redirect off;
    proxy_set_header Host $host;
    #proxy_set_header X-Forwarded-Host "example.com";
    #proxy_set_header X-Forwarded-Proto "https";
  }
}