Nginx 相关

反向代理

根据域名,反向代理到指定服务器

server {
    listen       80;
    server_name  home.com;

    location / {
        root	 /data/www;
    }
}

server {
    listen       80;
    server_name  pan.com;
            
    location / { 
                    proxy_pass http://127.0.0.1:8848;
            }
}

ssl证书

以下属性中以ssl开头的属性代表与证书配置有关,其他属性请根据自己的需要进行配置

server {
    #listen       80;
    listen 443 ssl; #配置HTTPS的默认访问端口号为443。此处如果未配置HTTPS的默认访问端口,可能会造成Nginx无法启动。Nginx 1.15.0以上版本请使用listen 443 ssl代替listen 443和ssl on。
    server_name www.exp.com; #将www.certificatestests.com修改为您证书绑定的域名,例如:www.example.com。如果您购买的是通配符域名证书,要修改为通配符域名,例如:*.aliyun.com。
    index index.html index.htm;
    ssl_certificate cert/4870905_www.xiongyungang.top.pem;  #将domain name.pem替换成您证书的文件名称。
    ssl_certificate_key cert/4870905_www.xiongyungang.top.key; #将domain name.key替换成您证书的密钥文件名称。
    ssl_session_timeout 5m;
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用该协议进行配置。
    ssl_prefer_server_ciphers on;
    #rewrite ^(.*)$ https://$host$1 permanent;   #将所有HTTP请求通过rewrite重定向到HTTPS。
    location / {
        proxy_pass http://127.0.0.1:8001;
    }
}

相关命令

  • 关闭nginx:systemctl stop nginx.service
  • 启动nginx:systemctl start nginx.service
  • 热部署:nginx -s reload
  • 重新打开配置文件 nginx -s reopen
posted @ 2020-12-04 22:09  熊云港  阅读(80)  评论(0编辑  收藏  举报