国产精品吹潮在线播放,日韩一区二区三区在线播放,啊级免费黄片视频,66av视频

網(wǎng)站首頁(yè)
手機(jī)版

APMServ 5.2.6 Nginx無(wú)法啟動(dòng)BUG修正方法

更新時(shí)間:2024-06-01 00:07:07作者:未知

APMServ 5.2.6 Nginx無(wú)法啟動(dòng)BUG修正方法

APMServ 5.2.6 無(wú)法啟動(dòng)Nginx的BUG修正方法:
在nginx/conf/nginx.conf配置文件的http { }內(nèi),增加以下三行語(yǔ)句(注意去掉盤符后的路徑需跟當(dāng)前路徑一致):
client_body_temp_path /APMServ5.2.6/nginx/client_body_temp;
proxy_temp_path /APMServ5.2.6/nginx/proxy_temp;
fastcgi_temp_path /APMServ5.2.6/nginx/fastcgi_temp;
-----------------------------------------------------------------------------------------------------
修正后的nginx/conf/nginx.conf配置文件全文如下:
-----------------------------------------------------------------------------------------------------

worker_processes 1;

error_log /APMServ5.2.6/nginx/logs/error.log crit;

pid /APMServ5.2.6/nginx/logs/nginx.pid;

events {
worker_connections 64;
}

http {
include /APMServ5.2.6/nginx/conf/mime.types;
default_type application/octet-stream;

#charset gb2312;

server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;

keepalive_timeout 60;

fastcgi_connect_timeout 300;
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;
client_body_temp_path /APMServ5.2.6/nginx/client_body_temp;
proxy_temp_path /APMServ5.2.6/nginx/proxy_temp;
fastcgi_temp_path /APMServ5.2.6/nginx/fastcgi_temp;

gzip on;
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 85;
server_name localhost;
index index.html index.htm index.php;
root /APMServ5.2.6/www/htdocs;
autoindex on;

location ~ .*/.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000;
include /APMServ5.2.6/nginx/conf/fastcgi_params;
}

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 /APMServ5.2.6/nginx/logs/access.log access;
}
}

本文標(biāo)簽: 配置文件  路徑  語(yǔ)句  

為您推薦

APMServ 5.2.6 Nginx無(wú)法啟動(dòng)BUG修正方法

APMServ 5.2.6 Nginx無(wú)法啟動(dòng)BUG修正方法 APMServ 5.2.6 無(wú)法啟動(dòng)Nginx的BUG修正方法: 在nginx/conf/ngin

2024-06-01 00:07

nginx中一臺(tái)服務(wù)器單iP多域名配置 nginx配置一個(gè)域名多個(gè)端口

nginx中一臺(tái)服務(wù)器單iP多域名配置 nginx綁定多個(gè)域名可又把多個(gè)域名規(guī)則寫(xiě)一個(gè)配置文件里,也可又分別建立多個(gè)域名配置文件,我一般為了管理方便,每個(gè)域名建

2024-06-01 00:07

nginx session共享的問(wèn)題

nginx session共享的問(wèn)題 不使用session,換作cookie 能把session改成cookie,就能避開(kāi)session的一些弊端,在從前看的一

2024-06-01 00:07

編寫(xiě)每天定時(shí)切割Nginx日志的腳本(寫(xiě)一個(gè)腳本進(jìn)行nginx日志統(tǒng)計(jì),得到訪問(wèn)ip)

編寫(xiě)每天定時(shí)切割Nginx日志的腳本 下面是deepvps自己用的自動(dòng)每天定時(shí)切割Nginx日志的腳本,很方便很好用,推薦給大家使用。本腳本也是參考了張宴老師的

2024-06-01 00:06

nginx+php使用open_basedir限制站點(diǎn)目錄防止跨站

nginx+php使用open_basedir限制站點(diǎn)目錄防止跨站 方法1)在Nginx配置文件中加入 fastcgi_param PHP_VALUE "ope

2024-06-01 00:06

nginx只允許執(zhí)行php程序配置(nginx運(yùn)行php項(xiàng)目)

nginx只允許執(zhí)行php程序配置 方法一,nginx限制后綴 解決辦法: 代碼如下 location ~* .(txt|doc|sql|gz)$ { if (

2024-06-01 00:06