apisix/upstream/web2.conf
2025-06-16 13:40:33 +08:00

25 lines
372 B
Plaintext

worker_processes 1;
error_log stderr notice;
events {
worker_connections 1024;
}
http {
variables_hash_max_size 1024;
access_log off;
real_ip_header X-Real-IP;
charset utf-8;
server {
listen 80;
location / {
return 200 "hello web2";
}
location /static/ {
alias static/;
}
}
}