http - Nginx does not response to port 80 -


i've moved debian arch server running in problems. i'm running web applications on nginx following config:

vhost: https://gist.github.com/anonymous/46dec … cbdd439ccd nginx.conf: https://gist.github.com/anonymous/54f6d … b0ccbbe3f7

if try enter http://2wickl.de in browser (or curl) i'll strange binary data (%). if directly enter https://2wickl.de i'll correct output (in case https://www.2wickl.de). when i'm trying http://aasdflaksdflalsfdj.2wickl.de not work. if try https://aasdflaksdflalsfdj.2wickl.de works should. think, nginx not chance redirect or deliver default site on port 80. can give me hints, can have or did wrong?

netstat -a -p -n|grep listen delivers: https://gist.github.com/anonymous/54d2d … 0111f1135d

information: firewall running, no rules configured.

thanks help. regards marove

after further investigation found problem:

one of server-configurations had http2 enabled http port 80

server {     listen 80 http2;     listen [::]:80 http2; } 

after changing to

server {     listen 80;     listen [::]:80; } 

everything works fine again. advise deactivate alle server-settings , turn on every server 1 one.


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -