zoukankan      html  css  js  c++  java
  • nginx应用

    windows:

    启动:start nginx

    退出:nginx -s quit

    检查配置是否正确:nginx -t -c ./conf/nginx.conf

    查看是否在运行:tasklist /fi "imagename eq nginx.exe"

    centos7:

    // 服务状态
    # systemctl status nginx
    // 服务启动
    # systemctl start nginx
    // 服务停止
    # systemctl stop nginx
    // 服务重启
    # systemctl restart nginx

    https配置参考:https://www.cnblogs.com/tianhei/p/7726505.html

    多域名配置:https://www.jb51.net/article/117697.htm

    安装配置参考:

    https://blog.csdn.net/qq_38384568/article/details/80760208
    https://www.cnblogs.com/lamp01/p/10101794.html
    https://www.jb51.net/article/107966.htm
  • 相关阅读:
    数据库
    php
    123
    es5新增
    正则表达式
    cookie
    Event事件下
    事件对象
    dva框架的下拉菜单的父子关系
    dva框架的table表格---删除
  • 原文地址:https://www.cnblogs.com/yuwentims/p/10184498.html
Copyright © 2011-2022 走看看