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
- RAC叢集中IP地址的更改
- CSS將背景圖片集中在一張圖片上CSS
- Kubernetes EKS 叢集中的 IP 地址分配問題
- css中圖片的四種地址引用CSS
- Nginx中防盜鏈(下載防盜鏈和圖片防盜鏈)及圖片訪問地址操作記錄Nginx
- 直播原始碼搭建教程之獲取相簿中的指定一個圖片後上傳原始碼
- JS中通過指定大小來壓縮圖片JS
- java匯出圖片,拼接多個圖片, 拼接文字和圖片 到一個圖片檔案Java
- ent M2M模型在pxc叢集中的一個大坑模型
- 【APP】為Kubernetes叢集中服務部署Nginx入口服務APPNginx
- mongo副本集 叢集中只存在一個SECONDARY節點處理Go
- 天翼雲虛擬IP地址及其在高可用叢集中的應用
- 圖片預載入,圖片懶載入,和jsonp中的一個疑問JSON
- 一起擼個朋友圈吧 - 圖片瀏覽(中)【圖片瀏覽器】瀏覽器
- Flutter: 完成一個圖片APPFlutterAPP
- 搭建了一個圖片庫
- 如何選擇一個Kafka叢集中的主題分割槽的數量Kafka
- Nginx學習筆記--Nginx圖片縮圖,水印處理模組Nginx筆記
- Java | 圖片地址查詢返回引數自動拼接圖片字首地址Java
- 分享一個圖片處理類
- 通用mapper、圖片上傳、nginxAPPNginx
- 如何在Github提交圖片,做一個自己的圖片倉庫Github
- 更改oracle叢集中的的vipOracle
- ElasticSearch之叢集中的節點Elasticsearch
- 【百度知道總結】獲取一個圖片地址中圖片名稱的方法
- Nginx Image Module圖片縮圖 水印處理模組Nginx
- 通過圖片地址,將圖片處理成base64,使用ajax上傳圖片
- 一個去掉圖片背景的網站網站
- 一個簡單的圖片水印工具
- nginx 解決圖片跨域問題Nginx跨域
- 為Nginx配置圖片防盜鏈薦Nginx
- 《反恐精英2》曝漏洞,可在遊戲中插入圖片、抓取玩家IP地址遊戲
- 管理oracle叢集中的ocr檔案Oracle
- 替換oracle叢集中的OCR 映象Oracle
- Glide中解析圖片(靜態圖片)IDE
- javascript如何獲取指定元素內的所有圖片JavaScript
- 如何實現一個圖片載入框架框架