Apache2 włączanie wyłączanie stron włączanie modułów wyłączanie modułów: Różnice pomiędzy wersjami

Z Podręcznik Administratora by OPZ SGU
Przejdź do nawigacji Przejdź do wyszukiwania
(Utworzono nową stronę "# enable site sudo a2ensite # disable site sudo a2dissite # enable an apache2 module sudo a2enmod # e.g. a2enmod php4 will create the correct symlinks in mods-enab...")
 
m
 
(Nie pokazano 1 pośredniej wersji utworzonej przez tego samego użytkownika)
Linia 1: Linia 1:
<pre>
# enable site
# enable site
sudo a2ensite
sudo a2ensite
Linia 15: Linia 16:
# force reload the server:
# force reload the server:
sudo  /etc/init.d/apache2 force-reload
sudo  /etc/init.d/apache2 force-reload
</pre>
[[Category:Ubuntu]]

Aktualna wersja na dzień 04:50, 21 lis 2015

# enable site
sudo a2ensite
 
# disable site
sudo a2dissite
 
# enable an apache2 module
sudo a2enmod
 
# e.g. a2enmod php4 will create the correct symlinks in mods-enabled to allow the module to be used. In this example it will link both php4.conf and php4.load for the user
 
# disable an apache2 module
sudo a2dismod
 
# force reload the server:
sudo  /etc/init.d/apache2 force-reload