nginx配置OA开心乐园源码出售搭建文件注意事项

一、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;**
}

猜你喜欢

转载自www.cnblogs.com/kaizhehua/p/11113109.html