nginx叢集中圖片指定一個地址中
#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;
worker_rlimit_nofile 65535;
events {
worker_connections 65535;
}
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;
#charset koi8-r;
#access_log logs/host.access.log main;
#location / {
# root html;
# index index.html index.htm;
#}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
#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;
# }
#}
upstream tomcat8091 {
server 172.16.0.130:8091;
server 172.16.0.131:8091;
}
upstream tomcat8092 {
server 172.16.0.130:8092;
server 172.16.0.131:8092;
}
server {
listen 8091;
location / {
root html;
index index.html index.htm;
proxy_pass http://tomcat8091;
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 100m;
}
}
server {
listen 8092;
location / {
root html;
index index.html index.htm;
proxy_pass http://tomcat8092;
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 100m;
}
location ~ .(jpg|png|gif)$ {
proxy_pass http://172.16.0.130:8092; #圖片指定一個地址中
}
}
}
本文轉自 jxzhfei 51CTO部落格,原文連結:http://blog.51cto.com/jxzhfei/1553625
相關文章
- CSS背景圖片集中在同一個圖片CSS
- 圖片集中箱
- Kubernetes EKS 叢集中的 IP 地址分配問題
- 直播原始碼搭建教程之獲取相簿中的指定一個圖片後上傳原始碼
- JS中通過指定大小來壓縮圖片JS
- ent M2M模型在pxc叢集中的一個大坑模型
- 下載指定的 Tumblr 部落格中的圖片,影片。
- 已知郵件中圖片的 CID 地址,咋獲取圖片的真實網路地址?比如 src 是"/cgi-bin/"開頭的地址?
- 天翼雲虛擬IP地址及其在高可用叢集中的應用
- 圖片預載入,圖片懶載入,和jsonp中的一個疑問JSON
- 通用mapper、圖片上傳、nginxAPPNginx
- 如何選擇一個Kafka叢集中的主題分割槽的數量Kafka
- Flutter: 完成一個圖片APPFlutterAPP
- Java | 圖片地址查詢返回引數自動拼接圖片字首地址Java
- Kubernetes叢集中配置Ingress支援HTTPS訪問(一):cfsslHTTP
- 分享一個圖片處理類
- 如何在Github提交圖片,做一個自己的圖片倉庫Github
- ElasticSearch之叢集中的節點Elasticsearch
- nginx 解決圖片跨域問題Nginx跨域
- 一個去掉圖片背景的網站網站
- 帝國CMS靈動標籤無標題圖片縮圖時呼叫指定預設圖片
- 匹配圖片連結地址的正規表示式
- FastDFS+Nginx搭建分散式圖片儲存ASTNginx分散式
- nginx 透過 php 代理給圖片加水印NginxPHP
- 《反恐精英2》曝漏洞,可在遊戲中插入圖片、抓取玩家IP地址遊戲
- NPOI 在指定單元格匯入匯出圖片
- 擼了一個簡陋的圖片站
- 如何實現一個圖片載入框架框架
- 一個提取圖片顏色的React元件React元件
- 用Python寫一個圖片標註工具Python
- laraveladmin 圖片不顯示 域名地址localhost開頭Laravellocalhost
- html2canvas將指定區域匯出為圖片(js將div匯出為圖片)HTMLCanvasJS
- 在kubernetes叢集中部署open-falcon
- 教你解決CCE叢集中容器出網
- kubernetes高階之叢集中使用sysctlsTLS
- 如何在 Kubernetes 叢集中玩轉 Fluid + JuiceFSUI
- aspose word指定位置插入圖片,藉助word模板檔案中的書籤來定位 及Java 獲取網路圖片Java
- JavaScript中的圖片處理與合成(一)JavaScript
- nginx 代理圖片、css、js等靜態資源NginxCSSJS