Skip to content

Commit

Permalink
Changed Apache configuration directory in Ubuntu 14.04 (#1208).
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaas committed Oct 19, 2014
1 parent af7f119 commit 35817ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -528,7 +528,10 @@ def run(self):
http_user = "wwwrun"
defaultpath = "/etc/sysconfig/"
elif os.path.exists("/etc/debian_version"):
webconfig = "/etc/apache2/conf.d"
if os.path.exists("/etc/apache2/conf-available"):
webconfig = "/etc/apache2/conf-available"
else:
webconfig = "/etc/apache2/conf.d"
webroot = "/srv/www/"
http_user = "www-data"
defaultpath = "/etc/default/"
Expand Down

0 comments on commit 35817ae

Please sign in to comment.