本章节主要学习 nginx 的配置文件。
#使用的用户和用户组
user www www;
#指定工作衍生进程数
worker_processes 8;
#指定错误日志存放的路径,错误日志记录级别可选项为:【debug | info | notice | warn | error | crit】
error_log /data1/logs/nginx_error.log crit;
#指定 pid 存放的路径
pid /usr/local/webserver/nginx/nginx.pid;
#指定文件描述符数量
worker_rlimit_nofile 51200;
events
{
#使用的网络 I/O 模型,Linux 系统推荐采用 epoll 模型,FreeBSD 系统推荐采用 kqueue 模型
use epoll;
#允许的连接数
worker_connections 51200;
}
http
{
include mime.types;
default_type application/octet-stream;
#设置使用的字符集,如果一个网站有多种字符集,请不要随便设置,应让程序员在 HTML 代码中通过 Meta 标签设置
charset gb2312;
server_name_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
{
listen 80;
server_name www.yourdomain.com;
index index.html index.htm;
root /data0/htdocs;
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*.(js|css)$
{
expires 1h;
}
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 /data1/logs/access.log access;
}
}
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于