Skip to content

Commit

Permalink
Add comments to https and set db name on Maria to improve import
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Musgrove committed Jan 23, 2024
1 parent 9139cc8 commit 196cf2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docker-compose/base.compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ services:
image: mariadb:${MARIADB_VERSION}
environment:
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD}
MARIADB_DATABASE: dashboard
LANG: C.UTF-8
command: --lower_case_table_names=1 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
volumes:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose/https.compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ services:
dashboard:
environment:
PI_TOMCAT_USE_HTTPS: "true"
PI_TOMCAT_HTTPS_CERT: "/var/panintelligence/certs/fullchain.pem"
PI_TOMCAT_HTTPS_CERT_KEY: "/var/panintelligence/certs/privkey.pem"
PI_TOMCAT_HTTPS_CERT: "/var/panintelligence/certs/fullchain.pem" # A full chain key from a provider such as Let's Encrypt.
PI_TOMCAT_HTTPS_CERT_KEY: "/var/panintelligence/certs/privkey.pem" # A private key to match the key
PI_TOMCAT_COOKIE_SECURE: "true"
volumes:
- ./certs:/var/panintelligence/certs/
Expand Down

0 comments on commit 196cf2e

Please sign in to comment.