ISPsystem.com Forums

ISPsystem.com Forums (http://forum.ispsystem.com//index.php)
-   Troubleshooting (http://forum.ispsystem.com//forumdisplay.php?f=11)
-   -   Ip address resolve problem (http://forum.ispsystem.com//showthread.php?t=223)

meto 04-30-2008 07:11 PM

Ip address resolve problem
 
hello, i am an ISPmanager PRO user and i would apreciate your help about the issue i have here ..

well.. the address of my web page is:http://www.speedhost24.com/

but the problem is that when i try to view my page with my ip adress ( which is: http://87.120.162.6/ )it shows me someone else web page instead of mine . As i know although this problem appears , it has to show me an empty page at least, has not it ?

also when i try to view the below addresses of mine , it gives me the same problem, showing different web pages.

mail.speedhost24.com
pop.speedhos24.com
smtp.speedhost24.com

could you please help me to solve that issue?

Regards
Martin

Wishmaster 05-05-2008 09:13 AM

contact your domain registrar and set up the name servers you get while the VPS registration

lexsusdk 04-08-2017 07:24 AM

I know this is an older thread
But I have the same problem, two of my customers bought their own ipv4, ip is Assigned to the customers and their domains and www is set up with the new IP addresses anyway displayed customer no. 1 (username A104) website on all IPV4 and IPV6 addresses.

ksenya 04-11-2017 01:52 AM

Could you please make and show us a few screenshots of this issue?

lexsusdk 04-11-2017 12:27 PM

screenshots for what?
I've Assigned IP 79.xxx.xxx.xxx to username. users dns is set up with this ip, for his domain. RDNS(PTR) is also set up but another website appear
http://79.143.183.99/ shows stoltze-saltoft.dk but it must show familiehistorie.eu


<VirtualHost 127.0.0.1:8080>
ServerName familiehistorie.eu
DocumentRoot /var/www/ernlund/data/www/familiehistorie.eu
ServerAdmin webmaster@familiehistorie.eu
AddDefaultCharset UTF-8
AssignUserID ernlund ernlund
CustomLog /var/www/httpd-logs/familiehistorie.eu.access.log combined
ErrorLog /var/www/httpd-logs/familiehistorie.eu.error.log
Include /etc/httpd/conf/vhosts-resources/ernlund/vhost.conf
<FilesMatch "\.ph(p[3-5]?|tml)$">
SetHandler application/x-httpd-php5
</FilesMatch>
ScriptAlias /php-bin/ /var/www/php-bin-isp-php70/ernlund/
SetEnvIf X-Forwarded-Proto https HTTPS=on
DirectoryIndex index.html index.php
ScriptAlias /cgi-bin/ /var/www/ernlund/data/www/familiehistorie.eu/cgi-bin/
AddHandler application/x-httpd-php5 .php .php3 .php4 .php5 .phtml
Action application/x-httpd-php5 /php-bin/php
</VirtualHost>
<Directory /var/www/ernlund/data/www/familiehistorie.eu>
Options +Includes +ExecCGI
</Directory>




server {
server_name familiehistorie.eu ;
charset UTF-8;
index index.html index.php;
disable_symlinks if_not_owner from=$root_path;
include /etc/nginx/vhosts-includes/*.conf;
include /etc/nginx/vhosts-resources/familiehistorie.eu/*.conf;
access_log /var/www/httpd-logs/familiehistorie.eu.access.log;
error_log /var/www/httpd-logs/familiehistorie.eu.error.log notice;
ssi on;
set $root_path /var/www/ernlund/data/www/familiehistorie.eu;
root $root_path;
include /etc/nginx/vhosts-resources/ernlund/*.conf;
location / {
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @fallback;
}
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|av i|zip|gz|bz2?|rar|swf)$ {
try_files $uri $uri/ @fallback;
}
location / {
try_files /does_not_exists @fallback;
}
}
location @fallback {
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://127.0.0.1:8080 /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
listen 79.143.183.99:80;
listen [2a02:c205:2009:3013::10:1]:80;
}
server {
server_name familiehistorie.eu ;
ssl on;
ssl_certificate "/var/www/httpd-cert/ernlund/familiehistorie.crtca";
ssl_certificate_key "/var/www/httpd-cert/ernlund/familiehistorie.key";
ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
add_header Strict-Transport-Security "max-age=31536000;";
charset UTF-8;
index index.html index.php;
disable_symlinks if_not_owner from=$root_path;
include /etc/nginx/vhosts-includes/*.conf;
include /etc/nginx/vhosts-resources/familiehistorie.eu/*.conf;
access_log /var/www/httpd-logs/familiehistorie.eu.access.log;
error_log /var/www/httpd-logs/familiehistorie.eu.error.log notice;
ssi on;
set $root_path /var/www/ernlund/data/www/familiehistorie.eu;
root $root_path;
listen [2a02:c205:2009:3013::10:1]:443;
listen 79.143.183.99:443;
include /etc/nginx/vhosts-resources/ernlund/*.conf;
location / {
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @fallback;
}
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|av i|zip|gz|bz2?|rar|swf)$ {
try_files $uri $uri/ @fallback;
}
location / {
try_files /does_not_exists @fallback;
}
}
location @fallback {
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://127.0.0.1:8080 /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
}

lexsusdk 04-11-2017 02:44 PM

there should tick in Priority under the WWW domain so the problem is solved


All times are GMT +2. The time now is 06:27 PM.

Powered by vBulletin® Version 3.8.9
Copyright ©2000 - 2024, vBulletin Solutions, Inc.