summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/paste.conf
blob: 839fe786aa08584a6adc000116eacbb262230603 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
server {
    listen       80;
    server_name  paste.tozt.net;

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

    rewrite      ^(.*) https://$host$1 permanent;
}
# vim:ft=nginx