nginx 파일 서버 구축
5396 단어 Nginx
#Nginx
worker_processes 4;
# ,[debug|info|notice|warn|crit]
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
# ID
#pid logs/nginx.pid;
# nginx , (ulimit -n) nginx , nginx , ulimit -n
worker_rlimit_nofile 65535;
events {
# : socket (~ 64K)
worker_connections 5120;
}
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"';
# 。
#1.$remote_addr $http_x_forwarded_for ip ;
#2.$remote_user : ;
#3.$time_local :
#4.$request : url http
#5.$status :
#6.$body_bytes_sent :
#7.$http_referer :
#8.$http_user_agent :
# ,
#access_log logs/access.log main;
# , IO
#error_log logs/error.log crit;
#
#access_log off;
#
charset utf-8;
# hash
#server_names_hash_bucket_size 128;
#
#client_max_body_size 8m;
# hearerbuffer
#client_header_buffer_size 32k;
#
#large_client_header_buffers 4 64k;
#
sendfile on;
#
#tcp_nopush on;
# ,
keepalive_timeout 120;
#
#client_header_timeout 10;
#
#client_body_timeout 10;
#
#send_timeout 10;
# gzip
#gzip on;
#
#gzip_min_length 1k;
#
#gzip_buffers 4 16k;
# ( 1.1, squid2.5 1.0)
#gzip_http_version 1.0;
# 1-9 , , , CPU
#gzip_comp_level 2;
#
server {
listen 80;
server_name localhost;
# , ,
#charset utf-8;
#
#access_log logs/host.access.log main;
# URL
location / {
# ,
root /usr/local/nginx/html;
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.