Code refactoring
This commit is contained in:
parent
29a575eb6e
commit
5514e42cd1
44
.travis.yml
44
.travis.yml
|
@ -3,6 +3,29 @@ language: generic
|
||||||
dist: trusty
|
dist: trusty
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
# no certificates
|
||||||
|
- config: certs.yml
|
||||||
|
|
||||||
|
# certificates (default tls if onlyoffice not exists)
|
||||||
|
- config: certs.yml
|
||||||
|
ssl: true
|
||||||
|
|
||||||
|
# old certificates path (default onlyoffice if exists)
|
||||||
|
- config: certs.yml
|
||||||
|
ssl: true
|
||||||
|
private_key: onlyoffice.key
|
||||||
|
certificate_request: onlyoffice.csr
|
||||||
|
certificate: onlyoffice.crt
|
||||||
|
|
||||||
|
# custom certificates path
|
||||||
|
- config: certs.yml
|
||||||
|
ssl: true
|
||||||
|
private_key: mycert.key
|
||||||
|
certificate_request: mycert.csr
|
||||||
|
certificate: mycert.crt
|
||||||
|
SSL_CERTIFICATE_PATH: /var/www/onlyoffice/Data/certs/mycert.crt
|
||||||
|
SSL_KEY_PATH: /var/www/onlyoffice/Data/certs/mycert.key
|
||||||
|
|
||||||
# postgresql
|
# postgresql
|
||||||
- config: postgres.yml
|
- config: postgres.yml
|
||||||
|
|
||||||
|
@ -14,27 +37,6 @@ env:
|
||||||
POSTGRES_DB: mydb
|
POSTGRES_DB: mydb
|
||||||
POSTGRES_USER: myuser
|
POSTGRES_USER: myuser
|
||||||
|
|
||||||
# no certificates
|
|
||||||
- config: certs.yml
|
|
||||||
ssl: false
|
|
||||||
|
|
||||||
# certificates (default tls if onlyoffice not exists)
|
|
||||||
- config: certs.yml
|
|
||||||
|
|
||||||
# old certificates path (default onlyoffice if exists)
|
|
||||||
- config: certs.yml
|
|
||||||
private_key: onlyoffice.key
|
|
||||||
certificate_request: onlyoffice.csr
|
|
||||||
certificate: onlyoffice.crt
|
|
||||||
|
|
||||||
# custom certificates path
|
|
||||||
- config: certs.yml
|
|
||||||
private_key: mycert.key
|
|
||||||
certificate_request: mycert.csr
|
|
||||||
certificate: mycert.crt
|
|
||||||
SSL_CERTIFICATE_PATH: /var/www/onlyoffice/Data/certs/mycert.crt
|
|
||||||
SSL_KEY_PATH: /var/www/onlyoffice/Data/certs/mycert.key
|
|
||||||
|
|
||||||
# deprecated variables
|
# deprecated variables
|
||||||
- config: postgres-old.yml
|
- config: postgres-old.yml
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
ssl=${ssl:-true}
|
ssl=${ssl:-false}
|
||||||
private_key=${private_key:-tls.key}
|
private_key=${private_key:-tls.key}
|
||||||
certificate_request=${certificate_request:-tls.csr}
|
certificate_request=${certificate_request:-tls.csr}
|
||||||
certificate=${certificate:-tls.crt}
|
certificate=${certificate:-tls.crt}
|
||||||
|
|
Loading…
Reference in a new issue