網站是先後端分離,前端打包站點部署須要自力更生,爲了不跨域問題. 選擇了nginx
這個知名的反向代理服務器.javascript
這裏不探究安裝這種問題。php
#user nobody; # 用戶權限
worker_processes auto; # 工做進程的數量
#worker_cpu_affinity auto;
#全局錯誤日誌及PID文件
error_log logs/error.log; # 日誌輸出
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
#epoll是多路複用IO(I/O Multiplexing)中的一種方式,
#use 設置用於複用客戶端線程的輪詢方法。若是你使用Linux 2.6+,你應該使用epoll。若是你使用*BSD,你應該使用kqueue。
use epoll; # IOCP[window] , kqueue[bsd] , epoll[linux]
#單個後臺worker process進程的最大併發連接數
worker_connections 1024;
#multi_accept 告訴nginx收到一個新鏈接通知後接受盡量多的鏈接。
multi_accept on;
# 併發總數是 worker_processes 和 worker_connections 的乘積
# 即 max_clients = worker_processes * worker_connections
# 在設置了反向代理的狀況下,max_clients = worker_processes * worker_connections / 4 爲何
# 爲何上面反向代理要除以4,應該說是一個經驗值
# 根據以上條件,正常狀況下的Nginx Server能夠應付的最大鏈接數爲:4 * 8000 = 32000
# worker_connections 值的設置跟物理內存大小有關
# 由於併發受IO約束,max_clients的值須小於系統能夠打開的最大文件數
# 而系統能夠打開的最大文件數和內存大小成正比,通常1GB內存的機器上能夠打開的文件數大約是10萬左右
# 咱們來看看360M內存的VPS能夠打開的文件句柄數是多少:
# $ cat /proc/sys/fs/file-max
# 輸出 34336
# 32000 < 34336,即併發鏈接總數小於系統能夠打開的文件句柄總數,這樣就在操做系統能夠承受的範圍以內
# 因此,worker_connections 的值需根據 worker_processes 進程數目和系統能夠打開的最大文件總數進行適當地進行設置
# 使得併發總數小於操做系統能夠打開的最大文件數目
# 其實質也就是根據主機的物理CPU和內存進行配置
# 固然,理論上的併發總數可能會和實際有所誤差,由於主機還有其餘的工做進程須要消耗系統資源。
# ulimit -SHn 65535
}
http {
include mime.types; #設定mime類型,類型由mime.type文件定義
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"';
#設置nginx是否將存儲訪問日誌。關閉這個選項可讓讀取磁盤IO操做更快
#access_log logs/access.log main;
#sendfile 指令指定 nginx 是否調用 sendfile 函數(zero copy 方式)來輸出文件,
#對於普通應用,必須設爲 on,
#若是用來進行下載等應用磁盤IO重負載應用,可設置爲 off,
#以平衡磁盤與網絡I/O處理速度,下降系統的uptime.
# 高效文件傳輸
sendfile on;
tcp_nopush on;
tcp_nodelay on;
# types_hash_max_size 影響散列表的衝突率。types_hash_max_size越大,就會消耗更多的內存,但散列key的衝突率會下降,檢索速度就更快。types_hash_max_size越小,消耗的內存就越小,但散列key的衝突率可能上升。
types_hash_max_size 2048;
#鏈接超時時間
#keepalive_timeout 0;
keepalive_timeout 65;
gzip on;
gzip_disable "MSIE [1-6].";
gzip_comp_level 6;
gzip_min_length 1000; #置對數據啓用壓縮的最少字節數。若是一個請求小於1000字節,咱們最好不要壓縮它,由於壓縮這些小的數據會下降處理此請求的全部進程的速度。
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/x-javascript text/xml text/css application/xml;
#Buffers:另外一個很重要的參數爲buffer,若是buffer過小,Nginx會不停的寫一些臨時文件,這樣會致使磁盤不停的去讀寫,如今咱們先了解設置buffer的一些相關參數:
#client_body_buffer_size:容許客戶端請求的最大單個文件字節數
#client_header_buffer_size:用於設置客戶端請求的Header頭緩衝區大小,大部分狀況1KB大小足夠
#client_max_body_size:設置客戶端可以上傳的文件大小,默認爲1m
#large_client_header_buffers:該指令用於設置客戶端請求的Header頭緩衝區大小
#設定請求緩衝
client_body_buffer_size 10K;
client_header_buffer_size 1k;
client_max_body_size 8m;
large_client_header_buffers 2 1k;
map $http_user_agent $outdated { # 判斷瀏覽器版本
default 0;
"~MSIE [6-9].[0-9]" 1;
"~MSIE 10.0" 1;
}
# weight:輪詢權值,默認值爲1。
# down:表示當前的server暫時不參與負載。
# max_fails:容許請求失敗的次數,默認爲1。當超過最大次數時,返回 proxy_next_upstream 模塊定義的錯誤。
# fail_timeout:有兩層含義,一是在fail_timeout時間內最多允許max_fails次失敗;二是在經歷了max_fails次失敗之後,30s時間內不分配請求到這臺服務器。
# backup : 備份機器。當其餘全部的非 backup 機器出現故障的時候,纔會請求backup機器,所以這臺機器的壓力最輕。
# max_conns: 限制同時鏈接到某臺後端服務器的鏈接數,默認爲 0。即無限制。
# proxy_next_upstream : 這個指令屬於 http_proxy 模塊的,指定後端返回什麼樣的異常響應
#負載均衡
#upstream DataBase {
# ip_hash; # 每一個請求按訪問ip的hash結果分配,這樣每一個訪客固定訪問一個後端服務器,能夠解決session的問題。
# server 10.xx.xx.xx weight=1 max_fails=2 fail_timeout=30s;
# server 10.xx.xx.xx;
# server 10.xx.xx.xx;
#}
server {
listen 80; #端口號
server_name v.fpdiov.com; #域名
location /api { #代理API
proxy_pass http://api.fpdiov.com:8090;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr; #在web服務器端得到用戶的真實ip
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
proxy_connect_timeout 600; #nginx跟後端服務器鏈接超時時間(代理鏈接超時)
proxy_read_timeout 600; #鏈接成功後,後端服務器響應時間(代理接收超時)
proxy_send_timeout 600; #後端服務器數據回傳時間(代理髮送超時)
proxy_buffer_size 32k; #設置代理服務器(nginx)保存用戶頭信息的緩衝區大小
proxy_buffers 4 32k; #proxy_buffers緩衝區,網頁平均在32k如下的話,這樣設置
proxy_busy_buffers_size 64k; #高負荷下緩衝大小(proxy_buffers*2)
proxy_temp_file_write_size 64k; #設定緩存文件夾大小,大於這個值,將從upstream服>務器傳
keepalive_requests 500;
proxy_http_version 1.1;
proxy_ignore_client_abort on;
}
location ^~ / {
root /mnt/www/fpd-car-manage-frontend; #啓動根目錄
if ($outdated = 1){
rewrite ^ http://oisbyqrnc.bkt.clouddn.com redirect; #判斷瀏覽器版本跳轉
}
index index.html; #默認訪問頁面
try_files $uri $uri/ /index.html;
}
}
#server {
# listen 80; #偵聽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;
#}
#靜態文件,nginx本身處理
#location ~ ^/(images|javascript|js|css|flash|media|static)/ {
#過時30天,靜態文件不怎麼更新,過時能夠設大一點,
#若是頻繁更新,則能夠設置得小一點。
# expires 30d;
#}
# 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 {
#啓用 https, 使用 http/2 協議, nginx 1.9.11 啓用 http/2 會有bug, 已在 1.9.12 版本中修復.
# listen 443 ssl;
# server_name localhost;
# ssl on;
# 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; # 設置協商加密算法時,優先使用咱們服務端的加密套件,而不是客戶端瀏覽器的加密套件。
# ssl_session_timeout 60m; #緩存有效期
# ssl_session_cache shared:SSL:10m; #儲存SSL會話的緩存類型和大小
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
複製代碼
配置文件包含了如下一些考慮點:css
至此,公司的網站已經跑起來了。若以爲有用就保留一份吧,沒用就當衝浪吧;html