1 Answers
This server block uses the listen directive to accept requests on port 80 and supports IPv6.
server {
listen [::]:80;
listen 80;
server_name oneinstack.com www.oneinstack.com;
# and redirect to the https host (declared below)
# avoiding http://www -> https://www -> https:// chain.
return 301 https://oneinstack.com$request_uri;
}
Please login or Register to submit your answer