mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 06:42:16 +00:00
18 lines
387 B
Plaintext
18 lines
387 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# a2dissite
|
|
|
|
> Disable an Apache virtual host on Debian-based OSes.
|
|
> More information: <https://manpages.debian.org/latest/apache2/a2dissite.8.en.html>.
|
|
|
|
- Disable a virtual host:
|
|
|
|
`sudo a2dissite {{virtual_host}}`
|
|
|
|
- Don't show informative messages:
|
|
|
|
`sudo a2dissite --quiet {{virtual_host}}`
|