My app can be accessed at https://nocodefunctions.com/nocodeapp-web-front-1.0/
I would like that it can be accessed simply at https://nocodefunctions.com and also the http version: http://nocodefunctions.com
My current conf does not lead to the desired result (taken from here):
upstream payara{
least_conn;
server localhost:8080 max_fails=3 fail_timeout=5s;
server localhost:8181 max_fails=3 fail_timeout=5s;
}
server {
if ($host = nocodefunctions.com) {
return 301 https://$host/$request_uri;
} # managed by Certbot
listen 80;
#Replace with your domain
server_name nocodefunctions.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name nocodefunctions.com;
ssl_certificate /etc/letsencrypt/live/xxxxxxxxxxx # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/nocodefunctions.com/xxxxxxxxx # managed by Certbot
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://payara;
}
}
I use LetsEncrypt, Payara Micro.
Working nginx config: