博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx配置代码片
阅读量:5751 次
发布时间:2019-06-18

本文共 1508 字,大约阅读时间需要 5 分钟。

x.conf

server {    listen       80;    server_name  x.com www.x.com;    return 301 https://www.x.com$request_uri;}

x443.conf

upstream mywebs {    server 192.168.0.100:8080;    server 192.168.0.101:8080;     keepalive 200;}server {    listen 443;    server_name x.com www.x.com;    error_page 404 = /404.html;    ssl on;    ssl_certificate      /etc/nginx/tencentssl/1_www.x.com_bundle.crt;    ssl_certificate_key      /etc/nginx/tencentssl/2_www.x.com.key;    if ($http_host !~ "^www.x.com$") {        rewrite  ^(.*)    https://www.x.com$1 permanent;    }    location / {        proxy_pass http://mywebs;        proxy_http_version 1.1;        proxy_set_header Connection "";    }    location /front/ {        root /www/x;    }}

nginx.conf

user  nginx;worker_processes  2;error_log  /var/log/nginx/error.log warn;pid        /var/run/nginx.pid;events {    worker_connections  4096;}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;    server_tokens off;    sendfile        on;    #tcp_nopush     on;    keepalive_timeout  20;    gzip  on;    gzip_types      text/plain application/xml application/json;    gzip_comp_level 4;    include /etc/nginx/conf.d/*.conf;}

 

转载于:https://www.cnblogs.com/windyWu/p/8416390.html

你可能感兴趣的文章
++重载
查看>>
Rainbond 5.0.4版本发布-做最好用的云应用操作系统
查看>>
nodejs 完成mqtt服务端
查看>>
Spring IoC容器初的初始化过程
查看>>
sql server 触发器
查看>>
[工具]前端自动化工具grunt+bower+yoman
查看>>
关于完成生鲜电商项目后的一点总结
查看>>
noip2012 普及组
查看>>
第二阶段 铁大Facebook——十天冲刺(10)
查看>>
Java判断是否为垃圾_Java GC如何判断对象是否为垃圾
查看>>
多项式前k项和java_多项式朴素贝叶斯softmax改变
查看>>
java数组只能交换0下标和n_编程练习-只用0交换排序数组
查看>>
centos7安装mysql视频教程_centos7安装mysql(完整)
查看>>
php图片赋值,php如何优雅地赋值
查看>>
【探索HTML5第二弹01】HTML5的前世今生以及来世
查看>>
Failed to connect to remote VM. Connection refused. Connection refused: connect
查看>>
freeze
查看>>
SAP HANA存储过程结果视图调用
查看>>
设计模式 ( 十八 ):State状态模式 -- 行为型
查看>>
OracleLinux安装说明
查看>>