技术解析
容国外服务器器中的 80 映射到主机 55555 端口,配置了一个文件目录 inedx
server {
listen 80;
# server_name localhost:80;
location /files {
root /home;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
expires 30d;
}
}
现在外部访问 http://192.168.6.235:55555/files/ 正常访问, 但访问 http://192.168.6.235:55555/files 就跳转到 http://192.168.6.235/files/ (另一个容器的应用), 请问要如何解决