about summary refs log tree commit diff stats
path: root/linux/conf/nginx/conf.d/10-default.conf
blob: 97ee31b51e8815e3cd04f90e3be5311b865db997 (plain) (blame)
1
2
3
4
5
6
7
8
##
# Virtual Host Redirection 80 to 443
##
server {
    listen         80 default_server;
    server_name _;
    return         301 https://$host$request_uri;
}