summaryrefslogtreecommitdiff
path: root/playbooks.d/webserver-nginx/share/sites.d/https/nl.tyil.home
blob: 9683ccdea5fac30f83caf24b949087e16a9db646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
server {
	listen 443 ssl http2;
	listen [::]:443 ssl http2;

	server_name home.tyil.nl;

	ssl_certificate /etc/letsencrypt/live/home.tyil.nl/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/home.tyil.nl/privkey.pem;

	include /etc/nginx/snippets.d/certbot.conf;
	include /etc/nginx/snippets.d/headers.conf;
	include /etc/nginx/snippets.d/ssl.conf;

	location / {
		return 301 https://www.tyil.nl$request_uri;
	}

	location ~ ^/~(.+?)(/.*)?$ {
		alias /home/$1/www$2;
		autoindex on;
	}

	location /git {
		rewrite ^/git/(.*)$ https://git.tyil.nl/$1 redirect;
	}

	location /media {
		alias /var/media;

		satisfy any;

		allow 127.0.0.1;
		allow 10.57.0.0/16;
		allow 192.168.178.0/24;
		deny all;

		auth_basic "pls no hack";
		auth_basic_user_file "/var/media/.htpasswd";

		autoindex on;
	}

	location /media/backups { deny all; }
	location /media/nextcloud { deny all; }
	location /media/pictures { deny all; }
	location /media/recordings { deny all; }

	location /packages {
		alias /var/portage/packages;
		autoindex on;
	}
}