nginx基礎(chǔ)配置說明一則
更新時(shí)間:2013年02月15日 16:55:10 作者:
nginx基礎(chǔ)配置說明一則,有需要的朋友可以參考下
復(fù)制代碼 代碼如下:
user nfsnobody nfsnobody; #使用的用戶和組
worker_processes 8; #指定工作衍生進(jìn)程數(shù)
error_log /usr/local/web/nginx.0.8.15/nginx_error.log crit; #日志記錄的文件地址
pid /usr/local/web/nginx.0.8.15/nginx.pid; #進(jìn)行PID存放的路勁
worker_rlimit_nofile 65535; #最大文件描述符
events
{
use epoll; #使用事件模型,一般Linux2.6+使用epoll模型
worker_connections 65535; #最大鏈接數(shù)
}
http
{
include mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 128; #hash_table
client_header_buffer_size 32k; #請(qǐng)求頭部的緩沖大小
large_client_header_buffers 4 32k; #最大的請(qǐng)求頭部緩沖大小
client_max_body_size 8m; #客戶端最大請(qǐng)求 8M
sendfile on; #傳輸文件
tcp_nopush on;
keepalive_timeout 60; #60秒超時(shí)
tcp_nodelay on;
fastcgi_connect_timeout 300;#以下fastcgi模塊配置
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on; #以下gzip模塊配置
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
server
{
listen 80; #監(jiān)聽的端口
server_name www.test2.com; #host名稱
index index.html index.htm index.php; #默認(rèn)訪問的首頁(yè)
root /usr/local/web/www/; #文件目錄
error_page 404 403 http://admin.test.com/404.htm; #默認(rèn)404頁(yè)面
location ~ .*\.(php|php5)?$ #php cgi模塊
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location / #URL重寫模塊
{
index index.php;
if (!-f $request_filename){
rewrite (.*) /admin.php;
}
try_files $uri $uri/ /index.html;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
#以下是log模塊-記錄nginx日志
log_format access '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
access_log /usr/local/web/nginx.0.8.15/logs/access.log access;
}
}
相關(guān)文章
蘋果M1芯片安裝nginx 并且部署vue項(xiàng)目步驟詳解
在本篇文章里小編給大家整理了一篇關(guān)于蘋果M1芯片安裝nginx 并且部署vue項(xiàng)目步驟詳解內(nèi)容,有需要的朋友們可以跟著學(xué)習(xí)參考下。2021-11-11Nginx服務(wù)器中限制連接數(shù)與限制請(qǐng)求的模塊配置教程
這篇文章主要介紹了Nginx服務(wù)器中限制連接數(shù)與限制請(qǐng)求的模塊配置教程,分別為limit conn模塊與limit req模塊的相關(guān)用法講解,需要的朋友可以參考下2016-01-01nginx基于域名,端口,不同IP的虛擬主機(jī)設(shè)置的實(shí)現(xiàn)
這篇文章主要介紹了nginx基于域名,端口,不同IP的虛擬主機(jī)設(shè)置,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-11-11Dockerfile打包nginx鏡像的實(shí)現(xiàn)步驟
本文主要介紹了Dockerfile打包nginx鏡像的實(shí)現(xiàn)步驟,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-10-10