Question
IP canonicalization in Nginx
How to solve IP canonicalization in Nginx?
ls /etc/nginx/sites-enabled
WordPress
cat /etc/nginx/sites-enabled/wordpress
ServerName mysite.com
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
server {
listen 80;
listen [::]:80;
servername 102.121.121.278;
rewrite ^ http://www.domainname.com.com$requesturi? permanent;
}