You are not logged in.
Pages: 1
Hi beautiful geek people
I've succesfully setup an Apache server with php, mariadb and the whole shebang! The last thing I need is to enable http2 which for some reason just refuses to work. Here are the configs.
http.conf:
Include http2_module modules/mod_http2.so
Protocols h2 h2c http/1.1
httpd-vhosts.conf
<VirtualHost *80>
Protocols h2 h2c http/1.1
DocumentRoot "/srv/http/inorroe
ServerName inorroe
ServerAlias www.inorroe.local
</VirtualHost>
When I check the developer tools in Firefox I see this:
https://i.imgur.com/brsSEoA.jpg
Am I missing something obvious? I have no clue why it isn't working. Thanks in advance <3
Offline
Did you rule out FF as the issue?
https://http2.golang.org/
curl -v https://www.inorroe.local
Last edited by seth (2018-06-16 20:26:25)
Offline
HTTP2 only works over an encrypted connection. You are trying to use http:// when you need https://.
Offline
Thank you very much for the quick reply. I knew I was missing something obvious (stupid me). I'll need to setup a reverse proxy server first before I can check it out with https. Thanks for the help
Last edited by Kimyeti (2018-06-17 10:08:05)
Offline
Pages: 1