Replies: 1 comment
-
same as: #7077? |
Beta Was this translation helpful? Give feedback.
0 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.
-
apisix start multi port,how different port use different route. ex diffrent port use diffrent root route, like
server {
listen 80;
server_name www.xxx.com;
access_log /data/www/log/80_nginx.log combined;
index index.html index.htm index.php;
include /usr/local/nginx/conf/rewrite/none.conf;
root /data/www/website80;
}
server {
listen 8080;
server_name A.xxx.com;
access_log /data/www/log/8080_nginx.log combined;
index index.html index.htm index.php;
root /data/www/website8080;
}
Beta Was this translation helpful? Give feedback.
All reactions