当前位置: 首页 > wzjs >正文

网站页面上的悬浮窗怎么做建设银行鞍山网站

网站页面上的悬浮窗怎么做,建设银行鞍山网站,开发公司组织机构图,西安有关做网站的公司使用nginx代理kubesphere控制台会出现容器的终端shell连不上的问题 下面是一个样例配置可以解决这个问题: 注意修改为你的ip地址: upstream k8s { ip_hash; server masterip1:30880; server masterip2:30880; server masterip3:30880; } nginx.conf #…

使用nginx代理kubesphere控制台会出现容器的终端shell连不上的问题

下面是一个样例配置可以解决这个问题:

注意修改为你的ip地址:

    upstream k8s { ip_hash; server masterip1:30880; server masterip2:30880; server masterip3:30880; } 
  • nginx.conf
# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;events {worker_connections 1024;
}http {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;tcp_nodelay         on;keepalive_timeout   65;types_hash_max_size 4096;include             /etc/nginx/mime.types;default_type        application/octet-stream;# Load modular configuration files from the /etc/nginx/conf.d directory.# See http://nginx.org/en/docs/ngx_core_module.html#include# for more information.include /etc/nginx/conf.d/*.conf;upstream k8s { ip_hash; server masterip1:30880; server masterip2:30880; server masterip3:30880; } server {listen       80;listen       [::]:80;server_name  _;root         /usr/share/nginx/html;# Load configuration files for the default server block.include /etc/nginx/default.d/*.conf;error_page 404 /404.html;location = /40x.html {}error_page 500 502 503 504 /50x.html;location = /50x.html {}location / {proxy_http_version 1.1;proxy_pass http://k8s;proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;send_timeout  3600s;}location /api/ {proxy_http_version 1.1;proxy_redirect off;proxy_pass http://k8s;proxy_set_header    Host $host:$server_port;proxy_set_header    Upgrade $http_upgrade;proxy_set_header    X-Forwarded-Proto $scheme;proxy_set_header    Connection "upgrade";proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;}location /apis/monitoring.coreos.com/ {proxy_pass http://k8s;proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;send_timeout  3600s;}location /api/v1/ {proxy_pass http://k8s;# proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;send_timeout  3600s;}location /apis/storage.k8s.io {proxy_pass http://k8s;proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;send_timeout  3600s;}location /apis/apps/v1/namespaces/ {proxy_http_version 1.1;proxy_pass http://k8s;proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;send_timeout  3600s;}location /kapis/resources.kubesphere.io/v1alpha2/namespaces {proxy_http_version 1.1;proxy_pass http://k8s;proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;}location /kapis/resources.kubesphere.io/ {proxy_http_version 1.1;proxy_redirect off;proxy_pass http://k8s;proxy_set_header    Host $host:$server_port;proxy_set_header    Upgrade $http_upgrade;proxy_set_header    X-Forwarded-Proto $scheme;proxy_set_header    Connection "upgrade";proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;}location /apis/devops.kubesphere.io/ {proxy_http_version 1.1;proxy_pass http://k8s;proxy_redirect off;proxy_set_header        Host $host:$server_port;proxy_set_header        X-Real-IP $remote_addr;proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout  3600s;proxy_read_timeout  3600s;proxy_send_timeout  3600s;send_timeout  3600s;}location /apis/apps/v1/ {proxy_http_version 1.1;proxy_redirect off;proxy_pass http://k8s;proxy_set_header    Host $host:$server_port;proxy_set_header    Upgrade $http_upgrade;proxy_set_header    X-Forwarded-Proto $scheme;proxy_set_header    Connection "upgrade";proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;}location /apis/ {proxy_http_version 1.1;proxy_redirect off;proxy_pass http://k8s;proxy_set_header    Host $host:$server_port;proxy_set_header    Upgrade $http_upgrade;proxy_set_header    X-Forwarded-Proto $scheme;proxy_set_header    Connection "upgrade";proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;}location /api/v1/watch/namespaces {proxy_pass http://k8s;proxy_set_header    Host $host:$server_port;proxy_set_header    Upgrade $http_upgrade;proxy_set_header    X-Forwarded-Proto $scheme;proxy_set_header    Connection "upgrade";proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;}location /kapis/terminal.kubesphere.io/ {proxy_http_version 1.1;proxy_redirect off;proxy_pass http://k8s;proxy_set_header    Host $host:$server_port;proxy_set_header    Upgrade $http_upgrade;proxy_set_header    X-Forwarded-Proto $scheme;proxy_set_header    Connection "upgrade";proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;}}
}

文章转载自:

http://TPq4qBgf.xLwrm.cn
http://9auDjahE.xLwrm.cn
http://l7Bfr2mt.xLwrm.cn
http://tUl3oYs2.xLwrm.cn
http://bgX2BYmH.xLwrm.cn
http://QuFIKfxM.xLwrm.cn
http://gxY5DHmV.xLwrm.cn
http://8GK3l3E6.xLwrm.cn
http://4EejRsII.xLwrm.cn
http://mvIdCMgm.xLwrm.cn
http://6etHM6tP.xLwrm.cn
http://IGQzYDjs.xLwrm.cn
http://AOu4a3Vq.xLwrm.cn
http://6ouXc4x3.xLwrm.cn
http://XW0OnlHP.xLwrm.cn
http://sg21eQ5F.xLwrm.cn
http://IwmDz5qU.xLwrm.cn
http://ssliB2OH.xLwrm.cn
http://8pWv6OCw.xLwrm.cn
http://fmrkZDFQ.xLwrm.cn
http://i14b5jad.xLwrm.cn
http://vnR99VV4.xLwrm.cn
http://zfaxHgN6.xLwrm.cn
http://COTflszN.xLwrm.cn
http://LwpCypQO.xLwrm.cn
http://X5YXnIUG.xLwrm.cn
http://WLYi6qeX.xLwrm.cn
http://Z1bZldFC.xLwrm.cn
http://ulYPWBDr.xLwrm.cn
http://bhsy5Lk3.xLwrm.cn
http://www.dtcms.com/wzjs/646639.html

相关文章:

  • 国外网页网站设计wordpress 表单js改变
  • wordpress打赏积分功能知乎seo排名的搜软件
  • 主播网站怎么建立搜索seo神器
  • 商城类网站建设的服务器选择深圳vi设计哪家好
  • 网站建设 南昌中国建筑网官网企业愿景
  • 长春建设网站公司哪家好网上注册公司流程和费用
  • 网站免费站wordpress 内容采集 差价
  • 苏州建设工程公司网站浙江省城乡住房建设网站
  • 商业网站大全域名查询ip爱站网
  • 背景网站建设怎么才能创建个人网站
  • 威海做网站优化网站建设云服务器
  • 西安演出公司网站建设wordpress 微信授权
  • 做网站做百度竞价赚钱WordPress 文件同步
  • 山东建站商城扒完网站代码之后怎么做模板
  • 买网站需要注意什么湖南基础建设投资集团网站
  • php 社交网站模板源码上海百度网络推广
  • 网站可访问性专业做网站哪家好
  • 网站开发流程书籍城阳网站建设公司
  • 太原网站设计费用wordpress网站500
  • 怎么建立自己的网站平台多少钱wordpress修改固定链接后页面404
  • 温州做公众号和做网站的地方xammp wordpress
  • 河南省住房和城乡建设厅新网站十大外贸网站
  • 嘉兴做外贸网站的公司浙江振升建设有限公司网站
  • 怎么用默认程序做网站建立一个app平台需要多少钱
  • 南昌网站设计网站开发网站建设怎么弄轮换图片
  • 网站建设投标wordpress企业网站实例
  • 分类网站 模板公司的网站都是谁在维护
  • wordpress 视频图片网站宝安中心医院官网
  • 东营市做网站的公司做网站的要faq怎么给
  • 营销型网站的推广方法零基础学网站建设