Ops! Thank you so much Maxim. You are right! Reading your response again, I
just figured it out. Adding the following block solved the issue:
server {
server_tokens off;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name learnmyway.net;
# Har
Tahnk you Maxim for the answer and sorry for my tardy response. I'm sure
that's not the case since I have a server block with redirect to www. Here
is the actual config:
server {
server_tokens off;
listen 80;
listen [::]:80;
server_name learnmyway.net;
yeah ran into the same problem and still seems to be down right now
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,269359,269379#msg-269379
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
hi all..
I am trying to configure a reverse proxy which redirects a URL of the form:
https://mydomain.com/myapp/abcd/...
to:
http://myapp:5100/abcd/...
with DNS resolution of "myapp" to an IP address at runtime.
My current configuration file is:
server{
listen 80 default_server;
server_n