Files
service-user-revenue/config/prod.json
Narul Hidayah 547b047a28 fix(config): route production URLs through APISIX gateway
Point host_swagger to 192.168.80.123; database host unchanged.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-21 14:57:57 +09:00

41 lines
952 B
JSON

{
"app": {
"name": "Service User",
"description": "Purpose of this service is to provide authorization, roles, user activity and etc",
"version": "1.0.0",
"env": "Production"
},
"server": {
"port": "7001",
"host": "0.0.0.0",
"host_swagger": "http://192.168.80.123/service-user/",
"max_body": "50mb",
"max_upload": 104857600,
"morgan": "combined",
"cors": "*",
"ssl": {
"enable": false,
"cert": "",
"key": ""
}
},
"database": {
"engine": "postgres",
"host": "192.168.80.130",
"port": "5432",
"username": "saude_production",
"password": "y0BZQ6of14OULYnb",
"database": "saude_production",
"logging": false
},
"auth": {
"refresh_token_lifetime_day": 30,
"access_token_lifetime": 86400,
"reset_password_url": "https://tcelanatl.shiblysolution.id/ukln/auth/reset-password/"
},
"service": {
"notification": "http://127.0.0.1:7004/",
"hrms": "https://tcelanatl.shiblysolution.id/hrms/"
}
}