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

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

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