天天看点

nginx不同端口映射到80端口,http和https同时请求

重点

location / {
    proxy_pass http://localhost:8090;
    proxy_redirect default ;
}
location /xcx/{
   proxy_pass http://localhost:8091/;    
   proxy_redirect default;
} 
           

如果想通过 http://localhost:/xcx/a.html访问 http://localhost:8091/

则 proxy_pass http://localhost:8091/;

最后一定要加反斜杠,要不然会报404;

想访问http同时访问https

listen       ;
listen        ssl;
server_name  localhost;
#charset koi8-r;
#access_log  logs/host.access.log  main;
ssl_certificate     certificate.crt;
ssl_certificate_key privatekey.key;
           

443后面一定要加ssl,不然http会被重定向到https

全部代码如下

#user nobody;
worker_processes ;


#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;


#pid logs/nginx.pid;




events {
worker_connections ;
}




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 ;


#gzip on; 
server {
listen ;
listen  ssl;
server_name localhost;


#charset koi8-r;


#access_log logs/host.access.log main;
ssl_certificate certificate.crt;
ssl_certificate_key privatekey.key;
location / {
proxy_pass http://localhost:8090;
proxy_redirect default ;
}
location /xcx/{
proxy_pass http://localhost:8091/;
proxy_redirect default;
}   
#error_page 404 /404.html;


# redirect server error pages to the static page /50x.html
#
error_page     /x.html;
location = /x.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;
#}
           

继续阅读