一、Nginx的Nginx.conf配置文件有几个主要部分:
OA开心乐园源码出售搭建q-1152880099
【窝窝头源码论坛wowotoubbs。com】
1、http{}
2、http{}内包含了 server {}
3、server {} 内包含了location / {}
二、Nginx.conf 范本:
user Nginx;
worker_processes auto;
error_log /var/log/Nginx/error.log;
pid /run/Nginx.pid;
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/Nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/Nginx/mime.types;
default_type application/octet-stream;
server {
listen 80 default_server;
server_name 192.168.31.222;
root /usr/share/Nginx/html;
** location / **{
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
* include /etc/Nginx/conf.d/.conf;**
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。