summaryrefslogtreecommitdiffstats
path: root/roles/wg_portal/templates/wg_portal.nginx.conf.j2
blob: ddac788dd8e2458fa10a40c4515a85feaaf64791 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
    listen 80;
    listen [::]:80;

    server_name {{ wg_portal_hostname }};

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    location / {
        proxy_pass http://127.0.0.1:{{ wg_portal_port }}/;
    }
}