nginx常用配置conf的示例代碼詳解
更新時間:2022年03月21日 09:26:03 作者:孫霸天
這篇文章主要介紹了nginx常用配置conf,包括配置vue項目,配置接口代理的代碼詳解,代碼簡單易懂,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
nginx常用配置conf
代理靜態(tài)文件
# 靜態(tài)文件
server {
# 壓縮問價你配置
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 6;
gzip_types text/plain text/css application/javascript application/json image/jpeg image/png image/gif;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
listen 8088;
server_name web_resources;
root /data/nginx/static;
# 開啟頁面文件顯示
autoindex on;
location / {
# add_header Cache-Control no-store;
add_header Cache-Control "public,max-age=2592000";
add_header 'Access-Control-Allow-Origin' '*';
}
}
配置VUE項目
server {
listen 8071 ;
listen [::]:8071 ;
server_name zrzyweb; # 這里是網(wǎng)站的域名
location / {
add_header 'Access-Control-Allow-Origin' $http_origin;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,web-token,app-token,Authorization,Accept,Origin,Keep-Alive,User-Agent,X-Mx-ReqToken,X-Data-Type,X-Auth-Token,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
root E:/data/vue/zrzy; # /vue/dist/ 打包后的dist目錄
try_files $uri $uri/ @router; # 指向下面的 @router否則會出現(xiàn) 404
index index.html index.htm;
}
# 對應(yīng)上面的 @router,主要Vue請求并不是真實路徑,無法找到文件,需要重定向到 index.html 中,然后交給路由處理
location @router {
rewrite ^.*$ /index.html last;
}
}
配置接口代理
可以配置多個代理服務(wù)
# 接口服務(wù)
server {
listen 8090;
server_name njzy.natapp1.cc;
charset utf-8;
location /project/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://192.168.1.106:8080/;
}
location /one/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://192.168.1.243:9000/;
}
}
完整nginx.conf配置文件
{
#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;
events {
worker_connections 1024;
}
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 {
# 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
# 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
# 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;
# vue
server {
listen 8071 ;
listen [::]:8071 ;
server_name zrzyweb; # 這里是網(wǎng)站的域名
# root /var/www/ec; # /vue/dist/ 打包后的dist目錄
add_header 'Access-Control-Allow-Origin' $http_origin;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,web-token,app-token,Authorization,Accept,Origin,Keep-Alive,User-Agent,X-Mx-ReqToken,X-Data-Type,X-Auth-Token,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
root E:/data/vue/zrzy; # /vue/dist/ 打包后的dist目錄
try_files $uri $uri/ @router; # 指向下面的 @router否則會出現(xiàn) 404
index index.html index.htm;
# 對應(yīng)上面的 @router,主要Vue請求并不是真實路徑,無法找到文件,需要重定向到 index.html 中,然后交給路由處理
location @router {
rewrite ^.*$ /index.html last;
}
# 靜態(tài)文件
server { #web_resources
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 6;
gzip_types text/plain text/css application/javascript application/json image/jpeg image/png image/gif;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
listen 8088;
server_name web_resources;
root /data/nginx/static;
autoindex on;
location / {
# add_header Cache-Control no-store;
add_header Cache-Control "public,max-age=2592000";
add_header 'Access-Control-Allow-Origin' '*';
}
# 接口服務(wù)
server {
listen 8090;
server_name njzy.natapp1.cc;
charset utf-8;
location /project/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://192.168.1.106:8080/;
location /one/ {
proxy_pass http://192.168.1.243:9000/;
location /two/ {
proxy_pass http://192.168.1.100:9000/;
location /three/ {
proxy_pass http://192.168.1.100:8085/;
} 到此這篇關(guān)于nginx常用配置conf的文章就介紹到這了,更多相關(guān)nginx配置conf內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
nginx調(diào)用php-fpm出錯解決方法和nginx配置詳解
這篇文章介紹了nginx調(diào)用php-fpm出錯的解決方法,最后給出了nginx配置方法,需要的朋友可以參考下2014-03-03
Windows環(huán)境實現(xiàn)Nginx配置及開機自啟動
本文主要介紹了Windows環(huán)境實現(xiàn)Nginx配置及開機自啟動,通過兩種方式可以實現(xiàn)nginx的開機自啟動,具有一定的參考價值,感興趣的可以了解一下2024-03-03
nginx中的proxy_set_header參數(shù)指令詳解
本文介紹了Nginx中的proxy_set_header指令,用于自定義代理請求的HTTP頭部信息,實現(xiàn)更靈活的反向代理功能,提供了實際應(yīng)用場景和配置示例,幫助讀者更好地理解和使用proxy_set_header指令,感興趣的朋友一起看看吧2025-03-03

