You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest images ssl 443 support seems not be enabled by default.
Adding the following nginx conf in /etc/nginx/sites/https.dummytag.hypernode.io.conf makes it work again.
I was not able to auto generate this with the managed vhost commands
include /etc/nginx/app/dummytag.hypernode.io/http.*;
# SSL
server {
server_name dummytag.hypernode.io;
listen 443 ssl http2 default_server;
set $_HN_ENVIRONMENT "production";
include /etc/nginx/ssl_rules_intermediate.conf;
ssl_certificate "/etc/nginx/ssl/*.hypernode.local.crtkeyca";
ssl_certificate_key "/etc/nginx/ssl/*.hypernode.local.crtkeyca";
include /etc/nginx/server.generic_includes.conf;
include /etc/nginx/app/server.*;
include /etc/nginx/app/dummytag.hypernode.io/server.*;
include /etc/nginx/app/dummytag.hypernode.io/public.*;
}
# SSL staging
server {
server_name dummytag.hypernode.io;
listen 8443 ssl http2 default_server;
set $_HN_ENVIRONMENT "staging";
include /etc/nginx/ssl_rules_intermediate.conf;
ssl_certificate "/etc/nginx/ssl/*.hypernode.local.crtkeyca";
ssl_certificate_key "/etc/nginx/ssl/*.hypernode.local.crtkeyca";
include /etc/nginx/server.generic_includes.conf;
include /etc/nginx/app/server.*;
include /etc/nginx/app/dummytag.hypernode.io/server.*;
include /etc/nginx/app/dummytag.hypernode.io/staging.*;
}
bash /etc/my_init.d/60_restart_services.sh
The text was updated successfully, but these errors were encountered:
In the latest images ssl 443 support seems not be enabled by default.
Adding the following nginx conf in /etc/nginx/sites/https.dummytag.hypernode.io.conf makes it work again.
I was not able to auto generate this with the managed vhost commands
bash /etc/my_init.d/60_restart_services.sh
The text was updated successfully, but these errors were encountered: