A2ensite: Unterschied zwischen den Versionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
'''a2ensite, a2dissite''' - enable or disable an apache2 site / virtual host | '''a2ensite, a2dissite''' - enable or disable an apache2 site / virtual host | ||
== | == Beschreibung == | ||
a2ensite is a script that enables the specified site (which contains a <VirtualHost> block) within the apache2 configuration | a2ensite is a script that enables the specified site (which contains a <VirtualHost> block) within the apache2 configuration | ||
* It does this by creating symlinks within /etc/apache2/sites-enabled | * It does this by creating symlinks within /etc/apache2/sites-enabled | ||
Zeile 17: | Zeile 9: | ||
Apache treats the very first virtual host enabled specially as every request not matching any actual directive is being redirected there | Apache treats the very first virtual host enabled specially as every request not matching any actual directive is being redirected there | ||
* Thus it should be called 000-default in order to sort before the remaining hosts to be loaded first | * Thus it should be called 000-default in order to sort before the remaining hosts to be loaded first | ||
== Installation == | |||
<syntaxhighlight lang="bash" highlight="1" line> | |||
</syntaxhighlight> | |||
== Aufruf == | |||
<syntaxhighlight lang="bash" highlight="1-2" line> | |||
a2ensite [-q|--quiet] [-m|--maintmode] [ site ] | |||
a2dissite [-q|--quiet] [-m|--maintmode] [-p|--purge] [ site ] | |||
</syntaxhighlight> | |||
=== Optionen === | |||
{| class="wikitable sortable options gnu" | |||
|- | |||
! Unix !! GNU !! Parameter !! Beschreibung | |||
|- | |||
| || || || | |||
|- | |||
|} | |||
-q, --quiet Don't show informative messages | -q, --quiet Don't show informative messages | ||
Zeile 26: | Zeile 35: | ||
-p, --purge When disabling a module, purge all traces of the module in the internal state data base | -p, --purge When disabling a module, purge all traces of the module in the internal state data base | ||
== | === Parameter === | ||
=== Umgebungsvariablen === | |||
=== Exit-Status === | |||
a2ensite and a2dissite exit with status 0 if all sites are processed successfully, 1 if errors occur, 2 if an invalid option was used | a2ensite and a2dissite exit with status 0 if all sites are processed successfully, 1 if errors occur, 2 if an invalid option was used | ||
{| class="wikitable options col1center" | |||
|- | |||
! Wert !! Beschreibung | |||
|- | |||
| 0 || Erfolg | |||
|- | |||
| >0 || Fehler | |||
|} | |||
== | == Anwendung == | ||
Disables the default site | Disables the default site | ||
<syntaxhighlight lang="bash" highlight="1" line> | <syntaxhighlight lang="bash" highlight="1" line> | ||
Zeile 35: | Zeile 56: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Dateien == | === Problembehebung === | ||
== Konfiguration == | |||
=== Dateien === | |||
{| class="wikitable options" | {| class="wikitable options" | ||
|- | |- | ||
Zeile 45: | Zeile 70: | ||
|} | |} | ||
<noinclude> | |||
== Anhang == | |||
=== Siehe auch === | === Siehe auch === | ||
{{Special:PrefixIndex/{{BASEPAGENAME}}/}} | {{Special:PrefixIndex/{{BASEPAGENAME}}/}} | ||
Zeile 52: | Zeile 80: | ||
* [[a2ensite]](8) | * [[a2ensite]](8) | ||
* [[a2dissite]](8) | * [[a2dissite]](8) | ||
{{DEFAULTSORT:a2ensite}} | {{DEFAULTSORT:a2ensite}} | ||
Zeile 59: | Zeile 86: | ||
[[Kategorie:Apache/HTTP/Befehle]] | [[Kategorie:Apache/HTTP/Befehle]] | ||
[[Kategorie:Linux/Befehl]] | [[Kategorie:Linux/Befehl]] | ||
=== Dokumentation === | |||
; Man-Page | |||
# [https://manpages.debian.org/testing/procps/pgrep.1.de.html prep(1)] | |||
</noinclude> |
Version vom 7. April 2025, 13:13 Uhr
a2ensite, a2dissite - enable or disable an apache2 site / virtual host
Beschreibung
a2ensite is a script that enables the specified site (which contains a <VirtualHost> block) within the apache2 configuration
- It does this by creating symlinks within /etc/apache2/sites-enabled
- Likewise, a2dissite disables a site by removing those symlinks
- It is not an error to enable a site which is already enabled, or to disable one which is already disabled
Apache treats the very first virtual host enabled specially as every request not matching any actual directive is being redirected there
- Thus it should be called 000-default in order to sort before the remaining hosts to be loaded first
Installation
Aufruf
a2ensite [-q|--quiet] [-m|--maintmode] [ site ]
a2dissite [-q|--quiet] [-m|--maintmode] [-p|--purge] [ site ]
Optionen
Unix | GNU | Parameter | Beschreibung |
---|---|---|---|
-q, --quiet Don't show informative messages
-m, --maintmode Enables the maintainer mode, that is the program invocation is effectuated automatically by a maintainer script
- This switch should not be used by end users
-p, --purge When disabling a module, purge all traces of the module in the internal state data base
Parameter
Umgebungsvariablen
Exit-Status
a2ensite and a2dissite exit with status 0 if all sites are processed successfully, 1 if errors occur, 2 if an invalid option was used
Wert | Beschreibung |
---|---|
0 | Erfolg |
>0 | Fehler |
Anwendung
Disables the default site
a2dissite 000-default
Problembehebung
Konfiguration
Dateien
Datei | Beschreibung |
---|---|
/etc/apache2/sites-available | Directory with files giving information on available sites |
/etc/apache2/sites-enabled | Directory with links to the files in sites-available for enabled sites |
Anhang
Siehe auch
- apache2ctl(8)
- a2enconf(8)
- a2disconf(8)
- a2ensite(8)
- a2dissite(8)
Dokumentation
- Man-Page