You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are trying to use the above example file to start an nginx server, this will fail by now with any more recent nginx version with the error message: nginx: [emerg] unknown directive "ssl"
In order to fix it:
Change line 14 from listen 443; to listen 443 ssl;
Remove line 20 completely ssl on;
That would be it, after these changes the nginx ssl config example becomes usable again :)
The text was updated successfully, but these errors were encountered:
The config example for nginx ssl is outdated:
https://github.com/Countly/countly-server/blob/master/bin/config/nginx.server.ssl.conf
If you are trying to use the above example file to start an nginx server, this will fail by now with any more recent nginx version with the error message:
nginx: [emerg] unknown directive "ssl"
In order to fix it:
listen 443;
tolisten 443 ssl;
ssl on;
That would be it, after these changes the nginx ssl config example becomes usable again :)
The text was updated successfully, but these errors were encountered: