ifconfig (omitted the loop back)
Code:
eth0 Link encap:Ethernet HWaddr 00:0A:E6:A4:30:C1
inet addr:192.168.128.106 Bcast:192.168.128.255 Mask:255.255.255.0
inet6 addr: fe80::20a:e6ff:fea4:30c1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:43329 errors:0 dropped:0 overruns:0 frame:0
TX packets:45267 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:14377734 (13.7 MiB) TX bytes:17140478 (16.3 MiB)
Interrupt:5 Base address:0xdc00
and my Vhosts_ispconfig.conf - I don't know too too much about apache config files, but I'm pretty sure that NameVirtualHost is duplicated (which is why it's outputing that error). I tried taking out the second one, it does remove the warning, but does nothing for my original problem. (ip address hidden with x's ... there's actual numbers there IRL)
Code:
###################################
#
# ISPConfig vHost Configuration File
# Version 1.0
#
###################################
#
NameVirtualHost 70.x.x.x:80
<VirtualHost 70.x.x.x:80>
ServerName localhost
ServerAdmin root@localhost
DocumentRoot /var/www/sharedip
</VirtualHost>
NameVirtualHost 70.x.x.x:80
<VirtualHost 70.x.x.x:80>
ServerName localhost
ServerAdmin root@localhost
DocumentRoot /var/www/sharedip
</VirtualHost>
#
#
#
######################################
# Vhost: www.mysite.com:80
######################################
#
#
<VirtualHost 70.x.x.x:80>
ServerName www.mysite.com:80
ServerAdmin webmaster@mysite.com
DocumentRoot /home/www/web1/web
ServerAlias 2hotnsexy.com
DirectoryIndex index.html index.htm index.php index.php5 index.php4 index.php3 index.shtml index.cgi index.pl index.jsp Default.htm default.htm
ScriptAlias /cgi-bin/ /home/www/web1/cgi-bin/
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
ErrorLog /home/www/web1/log/error.log
AddType application/x-httpd-php .php .php3 .php4 .php5
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
</Files>
<Files *.php3>
SetOutputFilter PHP
SetInputFilter PHP
</Files>
<Files *.php4>
SetOutputFilter PHP
SetInputFilter PHP
</Files>
<Files *.php5>
SetOutputFilter PHP
SetInputFilter PHP
</Files>
php_admin_flag safe_mode On
php_admin_value open_basedir /home/www/web1/
php_admin_value file_uploads 1
php_admin_value upload_tmp_dir /home/www/web1/phptmp/
php_admin_value session.save_path /home/www/web1/phptmp/
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
Alias /error/ "/home/www/web1/web/error/"
ErrorDocument 400 /error/invalidSyntax.html
ErrorDocument 401 /error/authorizationRequired.html
ErrorDocument 403 /error/forbidden.html
ErrorDocument 404 /error/fileNotFound.html
ErrorDocument 405 /error/methodNotAllowed.html
ErrorDocument 500 /error/internalServerError.html
ErrorDocument 503 /error/overloaded.html
AliasMatch ^/~([^/]+)(/(.*))? /home/www/web1/user/$1/web/$3
AliasMatch ^/users/([^/]+)(/(.*))? /home/www/web1/user/$1/web/$3
</VirtualHost>
#
#
Recent comments
1 day 6 hours ago
1 day 8 hours ago
1 day 20 hours ago
1 day 23 hours ago
2 days 3 hours ago
2 days 9 hours ago
2 days 19 hours ago
2 days 20 hours ago
3 days 5 hours ago
3 days 6 hours ago