22 lines
758 B
Plaintext
22 lines
758 B
Plaintext
# App Service Configuration
|
|
# Note: These keys (DB_URL, DB_USER, DB_PASSWORD) might need adjustment
|
|
# based on how the actual Java application reads them (e.g., from System.getenv()).
|
|
# The JNDI approach suggested earlier might ignore these direct env vars.
|
|
# DB_URL=jdbc:postgresql://plm-ilshin-db:5432/ilshin
|
|
# DB_USER=postgres
|
|
# DB_PASSWORD=ilshin0909!!
|
|
|
|
# DB Service Configuration
|
|
POSTGRES_DB=waceplm
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=waceplm0909!!
|
|
|
|
# You can add other environment-specific variables here
|
|
# Example: TOMCAT_JAVA_OPTS="-Xmx512m -Xms256m"
|
|
DB_URL=jdbc:postgresql://wace-plm-db:5432/waceplm
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=waceplm0909!!
|
|
DB_DRIVER_CLASS_NAME=org.postgresql.Driver
|
|
DB_MAX_TOTAL=200
|
|
DB_MAX_IDLE=50
|
|
DB_MAX_WAIT_MILLIS=-1 |