summaryrefslogtreecommitdiff
path: root/nginx.conf.example
blob: 734c7cd14c10017235ec173ee90ef2f7d909f144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- mode: nginx; nginx-indent-level: 8; intent-tabs-mode: t -*-

server {
        server_name www.andrewdm.me;
        listen 443 ssl http2;
        listen [::]:443 ssl http2;

	if (-d /srv/http/$server_name/out/$uri) {
		rewrite ^(.*[^/])$ $1/ permanent;
	}

        location / {
                try_files /out$uri/index.html /out$uri /src$uri =404;
        }
        location /search.html {
                return 302 https://duckduckgo.com/?q=site:$host+$arg_s;
        }
}