Giter Club home page Giter Club logo

Comments (3)

adren avatar adren commented on June 15, 2024 2

Hi,

As for the SSL checking, here is the offline tools used:
https://github.com/rbsec/sslscan/

and to enhance the checks reported by internet.nl website, here is what needs to be accomplished;

Thanks a lot for your website

from thebestmotherfuckingwebsite.

denysvitali avatar denysvitali commented on June 15, 2024

Seems good now. I'll leave this issue open for discussion.
My current nginx config:

server
        {
                listen 443 ssl http2;
                listen [::]:443 ssl http2;
                expires $expires;
                server_name thebestmotherfucking.website www.thebestmotherfucking.website;
                ssl_certificate /etc/letsencrypt/live/thebestmotherfucking.website/fullchain.pem;
                ssl_certificate_key /etc/letsencrypt/live/thebestmotherfucking.website/privkey.pem;
                include snippets/gzip.conf;
                include snippets/ssl_best.conf;
                server_tokens off;
                location /
                {
                        autoindex on;
                        root "/srv/html/thebestmotherfuckingwebsite/dist/";
                        include "/etc/nginx/cors.conf";
                }
        }
# SSL CONFIG
ssl_protocols TLSv1.2;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_dhparam /etc/ssl/certs/dhparam.pem;
ssl_ecdh_curve secp384r1;
#ssl_session_tickets off;

add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;

ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;

ssl_stapling on;
ssl_stapling_verify on;
resolver 8.8.8.8 8.8.4.4 valid=300s;
resolver_timeout 10s;

add_header X-Frame-Options SAMEORIGIN;
add_header Referrer-Policy "same-origin";

SSL Result

from thebestmotherfuckingwebsite.

denysvitali avatar denysvitali commented on June 15, 2024

Will do, thank you :)

from thebestmotherfuckingwebsite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.