Happy OA nginx configuration file to build the source code to sell Notes

A, nginx configuration files of nginx.conf has several main components:

OA Happy source sells building q-1152880099

[Source buns forum wowotoubbs. com]
1, http {}
within 2, http {} {} contains Server
. 3, {} Server contains the LOCATION / {}

Two, nginx.conf template:

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

Guess you like

Origin www.cnblogs.com/kaizhehua/p/11113109.html