Nginx最简单的nginx.conf配置与说明centos7

user root;#需要与启动用户一致
worker_processes auto;
error_log /var/log/Nginx/error.log;
pid /run/Nginx.pid;

# Load dynamic modules. See /usr/share/Nginx/README.dynamic.
include /usr/share/Nginx/modules/*.conf;

events {
worker_connections 1024;
}

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;

# Load modular configuration files from the /etc/Nginx/conf.d directory.
# See http://Nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/Nginx/conf.d/*.conf;

#Nginx认server,测试使用,不需要时可以删除

server {

listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/Nginx/html;

# Load configuration files for the default server block.
include /etc/Nginx/default.d/*.conf;

location / {
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

#只需要添加一个自己的server
server {
listen 1234;#监听1234端口
listen [::]:1234;#监听1234端口
server_name _;#站点域名,只有IP时可以用_代替
root /root/Nginx/html;#存放页面的主目录

location / {
index index.html;#配置主页名字
}
}
}

相关文章

Nginx (engine x) 是一个高性能的HTTP和反向代理服务,也是一...
本地项目配置 1 复制 luffy/settings/dev.py为prop.py 修改l...
nginx不仅可以隐藏版本信息,还支持自定义web服务器信息 先看...
一 、此次漏洞分析 1 nginx HTTP/2漏洞 [nginx-announce] ng...
###进入nginx 目录cd /usr/local/nginx###递归显示 2 级目录...
在cmd命令窗口输入下面命令进行查看 tasklist /fi "ima...