15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
SERVICE: httpd
|
|
FILES_COLLECTED: /etc/httpd/conf/httpd.conf, /etc/httpd/conf.d/ssl.conf
|
|
--- FILE: /etc/httpd/conf/httpd.conf ---
|
|
ServerRoot "/etc/httpd"
|
|
Listen 80
|
|
Include conf.modules.d/*.conf
|
|
DocumentRoot "/var/www/html"
|
|
|
|
--- FILE: /etc/httpd/conf.d/ssl.conf ---
|
|
Listen 443 https
|
|
<VirtualHost _default_:443>
|
|
DocumentRoot "/var/www/html"
|
|
SSLEngine on
|
|
</VirtualHost>
|