Windows 上的 nginx 不重定向?
nginix on windowse don't redirect?
我正在我的 windows 10 机器上本地使用 minikube 进行 Kubernetes 部署服务,所以当我公开我的 expressjs 服务时 API 我可以通过以下方式访问它:localhost:3000
我想在网络上公开该服务,以便我可以从另一台设备(我的手机 phone)测试 API 来做到这一点 我安装了 Nginx 以设置反向代理来转发所有端口 80 上的传入请求到 localhost:3000/api
但是当我点击本地主机时它显示 Nginx 的默认页面 ?
这是我的nginx.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include 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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:3000/api/;
}
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
`
这里可能会发生一些事情:
更改Nginx配置后,没有执行应用的停止和重新加载;这是加载新配置所必需的,并使用命令 nginx -s stop
执行,然后是 nginx -s reload
.
不小心 运行 多个实例:如果出于任何原因命令 start nginx
多次 运行,您将有一个进程 运行ning 每次都无法使用 nginx -s stop
命令杀死它们;在这种情况下,您需要终止任务管理器上的进程或重新启动 Windows 系统。
请注意,Windows 的 Nginx 被视为 beta 版本,它存在一些性能和可操作性问题,如以下文档中所述[1].
我建议切换到完全支持 Minikube 和 Nginx 的 Linux 系统。您的方案已在 Ubuntu VM 上复制,并且按预期工作。
我正在我的 windows 10 机器上本地使用 minikube 进行 Kubernetes 部署服务,所以当我公开我的 expressjs 服务时 API 我可以通过以下方式访问它:localhost:3000
我想在网络上公开该服务,以便我可以从另一台设备(我的手机 phone)测试 API 来做到这一点 我安装了 Nginx 以设置反向代理来转发所有端口 80 上的传入请求到 localhost:3000/api
但是当我点击本地主机时它显示 Nginx 的默认页面 ?
这是我的nginx.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include 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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:3000/api/;
}
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
`
这里可能会发生一些事情:
更改Nginx配置后,没有执行应用的停止和重新加载;这是加载新配置所必需的,并使用命令
nginx -s stop
执行,然后是nginx -s reload
.不小心 运行 多个实例:如果出于任何原因命令
start nginx
多次 运行,您将有一个进程 运行ning 每次都无法使用nginx -s stop
命令杀死它们;在这种情况下,您需要终止任务管理器上的进程或重新启动 Windows 系统。请注意,Windows 的 Nginx 被视为 beta 版本,它存在一些性能和可操作性问题,如以下文档中所述[1].
我建议切换到完全支持 Minikube 和 Nginx 的 Linux 系统。您的方案已在 Ubuntu VM 上复制,并且按预期工作。