webinoly/templates/template-site-sslredirect

9 lines
171 B
Plaintext
Raw Normal View History

# WebinolySSLredirectStart - HTTP to HTTPS Redirect
server {
listen 80;
listen [::]:80;
#server_name;
return 301 https://$host$request_uri;
}
# WebinolySSLredirectEnd