This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
db: | |
image: postgres:13 | |
user: root | |
environment: | |
- POSTGRES_PASSWORD=odoo | |
- POSTGRES_USER=odoo | |
- POSTGRES_DB=postgres | |
restart: always # run as a service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[options] | |
addons_path = /usr/lib/python3/dist-packages/odoo/addons,/mnt/extra-addons | |
;admin_passwd = $pbkdf2-sha512$25000$DOG8F4LwPafovRdCyBmDMA$wjhsiaVEnUUXRqygeAD4m2kLqLxebE20bXajfKRZvsAYvv0XBWhPrlqaHj4DOaehv61q9/Fv6f92TLNRIndmcQ | |
admin_passwd = 123 | |
csv_internal_sep = , | |
data_dir = /root/.local/share/Odoo | |
db_host = db | |
db_maxconn = 64 | |
db_name = False | |
db_password = odoo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
ServerAdmin [email protected] | |
ServerName odoo.example.com | |
SSLEngine on | |
SSLProtocol all -SSLv2 -SSLv3 | |
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM | |
SSLCertificateFile /etc/ssl/wildcard.example.com/public.crt | |
SSLCertificateKeyFile /etc/ssl/wildcard.example.com/private.pem |