Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Nginx Redirect Requests to https://www

  • 14-02-2017 4:05pm
    #1
    Registered Users, Registered Users 2 Posts: 1,987 ✭✭✭


    I have my below nginx config, I'm trying to redirect everything to https://www regardless of what comes in for example http://example.com, http://www.example.com or https://example.com.

    I can't ever get https://example.com to redirect to the https://www pattern!?
    	server {
            listen          80;
            listen          443 ssl;
            server_name     example.com;
            return          301 https://www.example.com$request_uri;
        }
    
        server {
            listen       443 ssl;
    
            ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
            ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
            ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
            ssl_prefer_server_ciphers on;
            ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
            ssl_dhparam /etc/nginx/ssl/dhparams.pem;
            ssl_session_timeout 30m;
            ssl_session_cache shared:SSL:10m;
            ssl_buffer_size 8k;
            add_header Strict-Transport-Security max-age=31536000;
    
            root         /usr/share/nginx/html;
    
            # Load configuration files for the default server block.
            include /etc/nginx/default.d/*.conf;
    
            location / {
            }
    
            error_page 404 /404.html;
                location = /40x.html {
            }
    
            error_page 500 502 503 504 /50x.html;
                location = /50x.html {
            }
        }
    


Advertisement