我在 Kubernetes 中部署了一个在 nginx 上运行的应用程序,它是一个简单的静态index.html
. 我定义了一个带有 url 的按钮http://backservice:8080/action
。backservice
是一个支持 Spring 应用程序的 k8s 服务。
问题是,当我单击该按钮时,什么也没有发生。backservice
没有被击中。我预计会出现CORS
错误,但似乎 nginx 会阻止所有出站请求。我不想将后端服务代理到 nginx 中。
Nginx 配置:
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
服务器配置:
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /svg/ {
}
location /assets/ {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
与backendservice
nginx 应用程序位于相同的命名空间中。