Posted in domains
5694
5:42 am, June 10, 2022
 

redirect www to non www

usually i point the www to the ip address of the server and then create a redirect block on nginx, but this seems like extra work for nothing. 

Tested the cname point to the address but this seems to not work.

going to try a url redirect record, but not sure if this is correct either

I tested this domain name setting change, but it seems that a nginx block is still better to do this. Add this above your current block to catch the www and redirect it. 

NGINX

server {
    listen 80;
    server_name www.example.com;
    return 301 $scheme://example.com$request_uri;
}

Ok so this still was not working, you have to add the return in the main server block where the cert is added, as i had a seperate config for the www version of the site. 

It was ignoring the 80 as thats non ssl, but if it is set to https it checks the main block and ignores the 80 or http. 

Adding this line fixed it for me, in the www block. 

NGINX

server {
    root /var/www/html/kruxor.com;
    server_name www.kruxor.com;
    return 301 $scheme://kruxor.com$request_uri;
}

View Statistics
This Week
34
This Month
289
This Year
712

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Items in domains
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown
Random CSS Property

image-rendering

The image-rendering CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.
image-rendering css reference