d9f2bccd7f
- mod_http2 - Add "Protocol" statement to VHosts
23 lines
498 B
ApacheConf
23 lines
498 B
ApacheConf
<VirtualHost *:80>
|
|
#ServerName www.example.com
|
|
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot "/srv/www/apache"
|
|
|
|
<IfModule http2_module>
|
|
Protocols h2c http/1.1
|
|
</IfModule>
|
|
|
|
#LogLevel info ssl:warn
|
|
ErrorLog ${APACHE_LOG_DIR}/000-default.error.log
|
|
CustomLog ${APACHE_LOG_DIR}/000-default.access.log combined
|
|
|
|
<Directory "/srv/www/apache">
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
|
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|