【脑子备份】nginx相关配置

脑子备份:

脑子脑子 空哒空哒~


关于端口使用情况:

  1. 查看当前所有端口号的使用情况: netstat -ano
  2. 查看指定端口号的使用情况: netstat -aon|findstr "2080"
    在这里插入图片描述

nginx相关:

  1. 杀死nginx所有进程:taskkill /f /t /im nginx.exe ←简单粗暴
  2. 重启nginx:nginx -s reload
  3. 配置代理:
 server {
        listen       8080;// 端口号
        server_name  192.168.1.1;// ip
        location / {
            root html/dist;// dist包目录地址
            index index.html index.htm;//设置入口文件
			add_header Cache-Control no-store;// 设置请求头
        }
        location /Api/ {
            proxy_pass https://192.168.1.1:9099/;// 需要代理的地址
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
  1. 项目build打包时配置
// 打包时使用
  configureWebpack: () => {
    return {
      plugins: [
        new UglifyJsPlugin({
          uglifyOptions: {
            compress: {
              drop_console: true, // 注释console
              drop_debugger: true, // 注释debugger
              pure_funcs: ['console.log'], // 移除console.log
            }
          }
        })
      ]
    }
  }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值