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

    server_name {{ wg_portal_hostname }};

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