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 | |
| 52 | ssl_certificate /root/.acme.sh/logiczny.it/fullchain.cer; |
| 53 | ssl_certificate_key /root/.acme.sh/logiczny.it/logiczny.it.key; |
| 54 | |
| 55 | ssl_protocols TLSv1.2 TLSv1.3; |
| 56 | ssl_ciphers HIGH:!aNULL:!MD5; |
| 57 | }}} |
| 58 | 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. |
| 59 | |
| 60 | Is that how this suppose to work? |