Changes between Version 1 and Version 2 of Ticket #2460


Ignore:
Timestamp:
02/24/23 12:02:13 (14 months ago)
Author:
https://stackoverflow.com/users/12360980/logi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2460 – Description

    v1 v2  
    4646
    4747}}}
    48 I can observe same behaviour, no matter what port I setup to listen on ssl (80 acts identical), so I strongly belive that adding `ssl` to `listen` directive causing that.
     48{{{
     49/etc/nginx/sites-enabled #: cat ../inc/ssl.conf
     50#ssl on;
     51
     52ssl_certificate /root/.acme.sh/logiczny.it/fullchain.cer;
     53ssl_certificate_key /root/.acme.sh/logiczny.it/logiczny.it.key;
     54
     55ssl_protocols TLSv1.2 TLSv1.3;
     56ssl_ciphers         HIGH:!aNULL:!MD5;
     57}}}
     58I can observe same behaviour, no matter what port I setup to listen on ssl (80 acts identical), so I strongly belive that adding `ssl` to `listen` directive causing that.
     59
     60Is that how this suppose to work?