April 6, 2017 8.8kviews NGINX CENTOSHi i was config my nginx block to redirect all www to non-www, this is my config:server { listen 80; server_name mysite.com www.mysite.com; return 301 https://mysite.com$request_uri; }
server { listen 443 ssl http2; server_n...