mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-25 05:37:32 +00:00
18 lines
455 B
Text
18 lines
455 B
Text
= Disabling Test Page
|
|
[id='disabling-test-page']
|
|
|
|
To disable the test page, comment out all the lines in the file `/etc/httpd/conf.d/welcome.conf` using `pass:[#]` as follows:
|
|
|
|
----
|
|
# <LocationMatch "^/+$">
|
|
# Options -Indexes
|
|
# ErrorDocument 403 /.noindex.html
|
|
# </LocationMatch>
|
|
|
|
# <Directory /usr/share/httpd/noindex>
|
|
# AllowOverride None
|
|
# Require all granted
|
|
# </Directory>
|
|
|
|
# Alias /.noindex.html /usr/share/httpd/noindex/index.html
|
|
----
|