vote up 0 vote down star

I'm writing a shell script to do some web server configuration. I need to disable all currently active virtual hosts. a2dissite doesn't accept multiple arguments, so I can't do

a2dissite `ls /etc/apache2/sites-enabled`

Should I use find? Is it safe to manually delete the symlinks in /etc/apache2/sites-enabled?

flag

7 Answers

vote up 2 vote down check

Is your script Debian only? If so, you can safely delete all the symlinks in sites-enabled, that will work as long as all sites have been written correctly, in the sites-available directory.

For example:

 find /etc/apache2/sites-enabled/ -type l -exec rm -i "{}" \;

will protect you against someone who has actually written a file instead of a symlink in that directory.

(remove the -i from rm for an automatic script, of course)

link|flag
vote up 0 vote down

Another option would be to remove the read permissions on the directory (or files on it) - if Apache can't open the files, it should ignore them, IIRC.

link|flag
vote up 1 vote down

After a little more research, I found out that a2dissite is just a shell script, and it basically just calls rm. So, like other responses, I agree that it is safe to do

rm /etc/apache2/sites-enabled/*
link|flag
thanks for wasting our time – hop Oct 8 '08 at 15:01
vote up 0 vote down

Apparently, you can just install the latest Ubuntu ;)

link|flag
vote up 1 vote down

I never use 'a2dissite ' and always delete and create the links in /etc/apache2/sites-enabled manually so yes, I'd say it's pretty safe.

link|flag
vote up -1 vote down

You can just delete the symlinks, or move the entire directory away. There is no special database or other metadata besides those links.

link|flag
vote up -1 vote down

you can edit the httpd.conf and delete the include line for the virtual hosts (at the bottom of the file)

link|flag
well, this is being done by a shell script, and there's no assurance what the structure of the httpd.conf file is – Gorgapor Oct 8 '08 at 14:47
he can use regex. include is preety much the same. he could pass the dir of the vhosts as an argument and based on that he can build the regex – Mote Oct 8 '08 at 14:49
neither is there an assurance that all vhosts are defined in config files linked from the sites-enabled dir. – hop Oct 8 '08 at 14:50
That'd interfere with the ability to quickly activate some of those vhosts in the future, though. – ceejayoz Oct 8 '08 at 17:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.