How to access my IP's folder after including a domain name?
How to access my IP's folder after including a domain name?
When installed vestacp (with nginx) I could access my IP's folder
Now I added a domain name working fine, but when access the IP address it goes to that domain name
which nginx files to edit to make work again the IP folder? thanks in advance
Now I added a domain name working fine, but when access the IP address it goes to that domain name
which nginx files to edit to make work again the IP folder? thanks in advance
-
- Posts: 139
- Joined: Thu Jan 07, 2016 12:01 am
Re: How to access my IP's folder after including a domain name?
you can add your ip address as a web domain or you can add your ip under a domain as an a record.7777777 wrote:When installed vestacp (with nginx) I could access my IP's folder
Now I added a domain name working fine, but when access the IP address it goes to that domain name
which nginx files to edit to make work again the IP folder? thanks in advance
-
- Collaborator
- Posts: 783
- Joined: Mon May 11, 2015 8:43 am
- Contact:
- Os: CentOS 6x
- Web: apache + nginx
Re: How to access my IP's folder after including a domain name?
http://nginx.org/en/docs/http/request_p ... rver_names
Code: Select all
server {
listen 80;
server_name "";
return 444;
}