remove ai_api config

This commit is contained in:
liyong
2022-04-15 22:29:06 +08:00
committed by XiaoLi
parent 9975a25ffe
commit 4a73413220
4 changed files with 0 additions and 65 deletions
-15
View File
@@ -1,15 +0,0 @@
server {
# https://serverfault.com/questions/798734/use-variable-for-server-name-in-nginx#
# server_name $servername;
server_name "ai_api.moicen.com";
listen 8090;
client_max_body_size 10M;
# disable in local test env
ssl_certificate /etc/letsencrypt/live/moicen.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/moicen.com/privkey.pem; # managed by Certbot
location /api/v1/ai_api/ {
proxy_pass http://127.0.0.1:5000/;
}
}