open-wa/wa-automate-docker
![](https://avatars.githubusercontent.com/u/5903821?v=4)
![](https://avatars.githubusercontent.com/u/5903821?v=4)
The issue has been closed
Could not resolve reference: #/components/schemas/EasyApiResponse #26
benyhirmansyah posted onGitHub
I got multiple error output when clicking into EasyAPI POST example.
I'm using WA-Automate Docker.version with Docker SWAG nginx reverse proxy.
It is still working, though. I can send text message to WhatsApp using one of its API. But those error messages bother me and I'm curious whether it will affect other function.
Also, do you have nginx reverse proxy sample for this? Here is mine for reverse proxy:
# redirect all traffic to https
server {
listen 80;
listen [::]:80;
server_name mydomain.com;
return 301 https://$host$request_uri;
}
# main server block
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name mydomain.com;
# all ssl related config moved to ssl.conf
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
set $upstream_app 192.168.10.10;
set $upstream_port 8081;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}
Are there other location directives should be added?