feat(docker): 🚀 Update server port to 8025
- Change default server port from 8080 to 8025 across all configurations. - Update Dockerfile, docker-compose.yml, and related documentation. - Ensure all CLI commands and API endpoints reflect the new port. - Adjust example configurations and health check URLs accordingly.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"server_url": "http://localhost:8080",
|
||||
"server_url": "http://localhost:8025",
|
||||
"auth_key": "",
|
||||
"username": "",
|
||||
"password": ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"server": {
|
||||
"host": "localhost",
|
||||
"port": 8080,
|
||||
"port": 8025,
|
||||
"default_country_code": "27",
|
||||
"username": "",
|
||||
"password": "",
|
||||
@@ -66,10 +66,7 @@
|
||||
"Authorization": "Bearer your-token-here"
|
||||
},
|
||||
"active": true,
|
||||
"events": [
|
||||
"whatsapp.connected",
|
||||
"whatsapp.disconnected"
|
||||
],
|
||||
"events": ["whatsapp.connected", "whatsapp.disconnected"],
|
||||
"description": "Monitors WhatsApp connection status changes"
|
||||
},
|
||||
{
|
||||
@@ -100,7 +97,7 @@
|
||||
"media": {
|
||||
"data_path": "./data/media",
|
||||
"mode": "link",
|
||||
"base_url": "http://localhost:8080"
|
||||
"base_url": "http://localhost:8025"
|
||||
},
|
||||
"database": {
|
||||
"type": "postgres",
|
||||
@@ -113,12 +110,9 @@
|
||||
},
|
||||
"event_logger": {
|
||||
"enabled": false,
|
||||
"targets": [
|
||||
"file",
|
||||
"sqlite"
|
||||
],
|
||||
"targets": ["file", "sqlite"],
|
||||
"file_dir": "./data/events",
|
||||
"table_name": "event_logs"
|
||||
},
|
||||
"log_level": "info"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user