Welcome! Log In Create A New Profile

Advanced

problem with virtual host settings

March 01, 2011 12:12AM
So I have a info.php page which is located on the folder /var/www/nginx-default, however when I go to my ip address/info.php, it always redirects me to this site:http://www.iana.org/domains/example/is this because I have a virtual host that I called example? Here is my config for the example website:
server {
listen 80;
server_name www.example.com;
rewrite ^/(.*) http://example.com/$1 permanent;
}

server {
listen 80;
server_name example.com;

access_log /var/www/example.com/logs/access.log;
error_log /var/www/example.com/logs/error.log;

location / {
root /var/www/example.com/public/;
index index.html;
}
}

As I don't have a domain name yet and I can only access the server via terminal. The way I access this site via browser is by changing my /etc/hosts in my macbook so that example.com is mapped to my server IP address. however now when I do xxx.xxx.xxx.xxx/info.php in my macbook browser it redirects me to that site I posted above, when I access example.com from my macbook it works just fine. _______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

problem with virtual host settings

equinox March 01, 2011 12:12AM

Re: problem with virtual host settings

Antoine BONAVITA March 01, 2011 02:58AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 195
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready