iframe 跨域解决方案--->用Nginx转发

xiaoxiao2021-02-28  80

worker_processes  1; events {     worker_connections  1024; } http {     include       mime.types;     default_type  application/octet-stream;     sendfile        on;     keepalive_timeout  65; upstream web1{ server 127.0.0.1:7080; } upstream web2{ server 127.0.0.1:8080; }     server {         listen       80;         server_name  127.0.0.1;         location /web1 { proxy_pass http://web1;         } location /web2 { proxy_pass http://web2;         }         error_page   500 502 503 504  /50x.html;         location = /50x.html {             root   html;         }     } }

 

转载请注明原文地址: https://www.6miu.com/read-82155.html

最新回复(0)