feat: add WeChat verification endpoint to Nginx configuration

pull/21891/head
ytqh 1 year ago
parent 04d49ec8dc
commit 5cb2c464c4

@ -4,6 +4,12 @@ server {
listen ${NGINX_PORT};
server_name ${NGINX_SERVER_NAME};
# For WeChat verification
location = /6daQ3Q8FZl.txt {
default_type text/plain;
return 200 '8906c392d82bad461896285855d73cd8';
}
location /console/api {
proxy_pass http://api:5001;
include proxy.conf;

Loading…
Cancel
Save