Hi Moshe
This works absolutely perfect. Thank you so much for letting me (us) know
how to use the config arrangement.
Let me summarize the steps also for other users that might stumble over this
thread (and please feel free to correct/improve if required).
After performing the certbot command th
I mean how would the nginx config for new.page.com look like?
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,279794,279935#msg-279935
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Hi Moshe
I wanted to come back to you again to thank you very much.
I changed my nginx config file arrangement according to your proposal on
https://gist.github.com/kohenkatz/08a74d757e0695f4ec3dc34c44ea4369#file-redirect-all-http-to-https-conf
And I think it's awesome :-)
Very well structured
Here is what makes everything work ok:
In the cloud.conf (Seafile) I deleted the "http2" in the server part that
listens on port 80 and redirects.
It looks like this now:
server {
listen 80;
listen [::]:80;
server_name cloud.mydomain.com;
rewrite ^ https://$http_host$re
The config that you propose does not require to switch nginx off for
letsencrypt refreshs, correct?
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,279794,279810#msg-279810
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailm
Thanks a lot Moshe for all the efforts. The gist is pretty cool.
I will check it out and have a go with it.
I will also look closer at the config:
> include /etc/letsencrypt/options-ssl-nginx.conf;
Maybe there is something in there that's strange.
I will get back to you here in this thread.
Dear Moshe
I did switch off the seafile configuration and that means that the normal
chat.mydomain.com works again with nginx.,
I did then do
> sudo certbot --nginx
and the sitechat.mydomain.com now runs on with SSL.
So then I switch seafile conf on again --> Seafile works as always.
AND mat
Root Server with Ubuntu 16.04.
Nginx Version: 1.10.3
I have an Nginx server that serves 1 Application: An open source Cloud
Server from Seafile that listens on cloud.mydomain.com
I now tried to add another Application to my server: A Mattermost server
that should listen on chat.mydomain.com
When