微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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;#配置主页名字
}
}
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐