certbot and nginx working
This commit is contained in:
@ -5,7 +5,7 @@ certbot_rfc2136_key_algorithm: 'hmac-sha256'
|
||||
certbot_webserver_type: 'nginx' # 'nginx' or 'apache'
|
||||
certbot_dns_plugin: 'rfc2136'
|
||||
certbot_email: "certbot.kodi00@balsillie.email"
|
||||
certbot_acme_server: "https://acme-v02.api.letsencrypt.org/directory"
|
||||
certbot_acme_server: "acme-v02.api.letsencrypt.org"
|
||||
|
||||
certbot_domains:
|
||||
- kodi.balsillie.house
|
@ -1,13 +1,27 @@
|
||||
nginx_sites:
|
||||
- name: tv.balsillie.house
|
||||
upstream: 127.0.0.1:8080
|
||||
upstream:
|
||||
host: 127.0.0.1
|
||||
port: 8080
|
||||
- name: movies.balsillie.house
|
||||
upstream: 127.0.0.1:8081
|
||||
upstream:
|
||||
host: 127.0.0.1
|
||||
port: 8081
|
||||
- name: index.balsillie.house
|
||||
upstream: 127.0.0.1:8082
|
||||
upstream:
|
||||
host: 127.0.0.1
|
||||
port: 8082
|
||||
- name: torrent.balsillie.house
|
||||
upstream: 127.0.0.1:9090
|
||||
upstream:
|
||||
host: 127.0.0.1
|
||||
port: 9090
|
||||
- name: jellyfin.balsillie.house
|
||||
upstream: 127.0.0.1:8096
|
||||
upstream:
|
||||
host: 127.0.0.1
|
||||
port: 8096
|
||||
- name: kodi.balsillie.house
|
||||
upstream: 127.0.0.1:8082
|
||||
upstream:
|
||||
host: 127.0.0.1
|
||||
port: 8082
|
||||
|
||||
nginx_user: "http"
|
Reference in New Issue
Block a user