컴 파일 설치 nginx 1.9.15
:
wget :
groupadd www
useradd -g www -s /sbin/nologin -M www
:
tar -zxvf nginx-1.9.15.tar.gz
cd nginx-1.9.15
less README
./configure --help
yum install gcc-c++ pcre-devel.x86_64 libssl-dev openssl-devel.x86_64
./configure --user=www --group=www --prefix=/opt/app/nginx --with-pcre --with-http_ssl_module --with-http_addition_module --with-http_realip_module --with-http_flv_module --with-http_stub_status_module
make && make install
프로필: zabbix 사용
nginx.conf
user www www;
worker_processes 16;
error_log /opt/app/nginx/logs/error.log;
pid /opt/app/nginx/logs/nginx.pid;
worker_rlimit_nofile 65535;
events {
use epoll;
worker_connections 10240;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$request_filename - $document_root - $fastcgi_script_name' '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
log_format download '$remote_addr remote_user [$time_local]'
'"$request" $status $bytes_sent'
'"$http_referer" "$http_user_agent"'
'"$http_range" "$sent_http_content_range"';
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
server_tokens off;
fastcgi_connect_timeout 30;
fastcgi_send_timeout 30;
fastcgi_read_timeout 30;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
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;
access_log logs/access.log main;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
include /opt/app/nginx/conf/conf.d/*.conf;
}
z.conf
server {
listen 80 ;
server_name jk.zbbix.cn;
root /data/www/php;
default_type text/html;
charset utf8;
access_log logs/jk.access.log;
error_log logs/jk.error.log;
location / {
index index.html index.htm index.php;
if (-f $request_filename) {
expires max;
break;
}
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
error_page 404 /404.php;
error_page 500 502 503 504 /50x.html;
location ~ .*\.php {
root /data/www/php;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /opt/app/nginx/conf/fastcgi_params;
set $real_script_name $fastcgi_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.