Last active
March 22, 2017 15:54
-
-
Save bcruddy/89ee111e95ec023d5ebc9e02e678014b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable site | |
$ sudo a2ensite [site-file] | |
# disable site | |
$ sudo a2dissite [site-file] | |
# enable an apache2 module -> create correct symlinks in mods-enabled | |
$ sudo a2enmod [module] | |
# disable an apache2 module | |
$ sudo a2dismod [module] | |
# force reload the server: | |
$ sudo service apache2 reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment