1 Star 0 Fork 0

unitwork / nginx-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
wshy1121 提交于 2017-11-13 10:14 . add 初始版本提交
user nginx;
worker_processes 2;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
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;
keepalive_timeout 65;
#gzip on;
server {
listen 8080;
server_name 123.206.127.103:8080;
root /www/html/www.8080.com;
location / {
root /www/html/www.8080.com;
}
error_page 500 502 503 504 /50x.html;
location /50x.html {
root /www/html/www.8080.com;
}
}
server {
listen 8000;
server_name 123.206.127.103:8000;
root /www/html/www.8000.com;
location / {
root /www/html/www.8000.com;
}
error_page 500 502 503 504 /50x.html;
location /50x.html {
root /www/html/www.8000.com;
}
}
}
其他
1
https://gitee.com/unitwork/nginx-test.git
git@gitee.com:unitwork/nginx-test.git
unitwork
nginx-test
nginx-test
master

搜索帮助