kris / www-redirect
0 likes
0 forks
1 files
Last active
1 | # www.example.org redirection |
2 | server { |
3 | listen 443 ssl http2; |
4 | listen [::]:443 ssl http2; |
5 | |
6 | ssl_certificate /etc/letsencrypt/live/example.org/fullchain.pem; |
7 | ssl_certificate_key /etc/letsencrypt/live/example.org/privkey.pem; |
8 | ssl_trusted_certificate /etc/letsencrypt/live/example.org/chain.pem; |
9 | |
10 | server_name www.example.org; |
kris / 01-http.conf
0 likes
0 forks
1 files
Last active
1 | # Certbot http challenge |
2 | # and http to https redirection |
3 | |
4 | # For http certificate verification |
5 | upstream certbot { |
6 | server 127.0.0.1:8001; |
7 | } |
8 | |
9 | server { |
10 | listen [::]:80; |
kris / ejabberd.yml.movim.example
0 likes
0 forks
1 files
Last active
1 | ### |
2 | ### ejabberd configuration file |
3 | ### |
4 | ### The parameters used in this configuration file are explained at |
5 | ### |
6 | ### https://docs.ejabberd.im/admin/configuration |
7 | ### |
8 | ### The configuration file is written in YAML. |
9 | ### ******************************************************* |
10 | ### ******* !!! WARNING !!! ******* |
Newer
Older