apache config needs some help
-
Ok so as of right now my wordpress dash board says that my wordpress address is https://192.168.0.225/wordpress. My blog address is set to the same thing.
I have wordpres installed in the /var/www folder so it looks like:
/var/www/wordpressWhen i go to firefox under any machine on my lan and type 192.168.0.225. it takes me right to my site. YAY! but no really. I clik on login and i get this
the url /wordpress/wp-login.php can not be found on this server
here is my /etc/apache2/sites-enabled/000-default output
NameVirtualHost *
<VirtualHost *>
ServerAdmin my email addressDocumentRoot /var/www/wordpress
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/wordpress>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2’s default start page
# in /apache2-default/, but still have / go to the right place
#RedirectMatch ^/$ /apache2-default/
</Directory>ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory “/usr/lib/cgi-bin”>
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warnCustomLog /var/log/apache2/access.log combined
ServerSignature OnAlias /doc/ “/usr/share/doc/”
<Directory “/usr/share/doc/”>
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory></VirtualHost>
everything seems to be correct but it is not. i tried searching the forums but i had no idea what to search for.
thanx
- The topic ‘apache config needs some help’ is closed to new replies.