reinstall of apache 1.3 left websites down

frostedjynx

New member
Joined
Mar 24, 2006
Messages
1
I tried following of the how-to on upgrading apache to 2.0 however it didnt work. Then I tried to do the downgrade back to 1.3

I have debian 3.1 sarge release

So I removed apache and reinstalled it and now apache works but the domains I had on there do not. I read that I need to recreate the symlinks in the apache conf but im a bit lost on what to do.

basically if you goto mountsheba.com a site that is hosted for our church it gives the default listing. But in ssh I show /home/user/public_html/ and the files are still there-- So basically I need to know how to make mountsheba.com point to the local server /home/user/public_html
 
If each user's httpd.conf file is still apache1, that is most likely why your upgrade failed. Anyway, if they are still apache 1 config files, you would just need to readd the Include's to the master httpd.conf file.

http://www.directadmin.com/forum/sh...04&perpage=20&highlight=Include&pagenumber=14
Hello,

By "lost" I'm assuming you mean the just are not showing up?

If that's the case, then you'd likely just be missing your Include lines from the /etc/httpd/conf/httpd.conf

Here is a simple script that will re-fill them (it may add duplicate entries, so you'd have to remove any duplicates)

code:cd /usr/local/directadmin/data/users
for i in `ls`; do { echo "Include /usr/local/directadmin/data/users/$i/httpd.conf" >> /etc/httpd/conf/httpd.conf; }; done;

John
 
I upgraded two servers to apache 2.

One server with only our own sites seems find, the other one with aboud 230 domains on it was not stable anymore so I deciced to go back to 1.3 for that server.

Don't know what exactly the problem was but I think it had to do with all kinds of limits.

My advice: Stay on apache 1.3
 
Back
Top