Replies: 2 comments 4 replies
-
|
Hi! It doesn't support it. You can run nginx close to the WAHA and proxy requests there |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
It may help: docker-compose.yaml version: '3'
services:
nginx:
image: nginx
ports:
- "3000:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- app
app:
image: whatsapp-http-apinginx.conf docker-compose up |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Is it possible to define a base path for the API? Currently, all API calls need to be made to http://localhost:3000 (e.g. http://localhost:3000/api/session/start). Is it possible to change this to something like http://localhost:3000/waha (e.g. http://localhost:3000/waha/api/session/start)?
Beta Was this translation helpful? Give feedback.
All reactions