Added: configs/apache2/httpd.conf

Added: configs/apache2/httpd.conf
This commit is contained in:
casjay 2024-08-01 16:12:44 -04:00
parent 025c2620da
commit 439e9bc99b
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -121,14 +121,14 @@ ServerName REPLACE_SERVER_NAME
ServerAdmin REPLACE_SERVER_ADMIN ServerAdmin REPLACE_SERVER_ADMIN
ServerSignature On ServerSignature On
DocumentRoot "REPLACE_SERVER_DIR" DocumentRoot "REPLACE_SERVER_WWW_DIR"
<Directory /> <Directory />
AllowOverride none AllowOverride none
Require all denied Require all denied
</Directory> </Directory>
<Directory "REPLACE_SERVER_DIR"> <Directory "REPLACE_SERVER_WWW_DIR">
Options Indexes FollowSymLinks MultiViews ExecCGI Includes Options Indexes FollowSymLinks MultiViews ExecCGI Includes
AllowOverride All AllowOverride All
Require all granted Require all granted
@ -160,12 +160,12 @@ LogLevel warn
</IfModule> </IfModule>
<IfModule alias_module> <IfModule alias_module>
Alias /health REPLACE_SERVER_DIR/health/index.txt Alias /health REPLACE_SERVER_WWW_DIR/health/index.txt
Alias /health/json REPLACE_SERVER_DIR/health/index.json Alias /health/json REPLACE_SERVER_WWW_DIR/health/index.json
ScriptAlias /cgi-bin/ "/REPLACE_SERVER_DIR/cgi-bin/" ScriptAlias /cgi-bin/ "/REPLACE_SERVER_WWW_DIR/cgi-bin/"
</IfModule> </IfModule>
<Directory "REPLACE_SERVER_DIR/cgi-bin"> <Directory "REPLACE_SERVER_WWW_DIR/cgi-bin">
AllowOverride None AllowOverride None
Options None Options None
Require all granted Require all granted