2021/8/16

nginx 禁止uploads目录执行php

zai配置文件中添加 location ~ ^/(uploads|assets)/.*\.(php|php5|jsp)$ {                    deny all; }  必须要加在        …

  • nginx
  • 2021/8/16
  • 844
  • 2021/7/21

    nginx 拦截以数字结尾的跳转到html页面 nginx纯数字链接

    location ~*([0-9])$ { if (!-e $request_filename){       rewrite ^(.*)$ /$1.html last;    break; } root /www/wwwroot/cdtrans/public; }

  • nginx
  • 2021/7/21
  • 862
  • 2021/6/30

    Nginx 的五大应用场景

    一、HTTP服务器 Nginx本身也是一个静态资源的服务器,当只有静态资源的时候,就可以使用Nginx来做服务器,如果一个网站只是静态页面的话,那么就可以通过这种方式来实现部署。 1、 首先在文档根目录Docroot(/usr/l…

  • nginx
  • 2021/6/30
  • 859
  • 2021/5/21

    nginx 配置80转发443

    rewrite ^ https://$http_host$request_uri? permanent;

  • nginx
  • 2021/5/21
  • 784
  • 2021/5/21

    nginx php 配置域名80 443

    server     {         listen 80;         #listen [::]:80;     &nbs…

  • nginx php
  • 2021/5/21
  • 1,312
  • 2020/8/29

    Mac php+nginx

    mac安装nginx+phpnginx 安装命令 brew install nginx nginx 默认监听 8080 端口,启动成功之后,在浏览器访问 http://localhost:8080 可以看到 nginx 的欢迎界面。 默认服务路径,项目根目录 /usr/local/…

  • macos nginx
  • 2020/8/29
  • 1,132
  • 2020/8/18

    nginx启动停止

    /usr/local/nginx/sbin/nginx -s stop 停止 /usr/local/nginx/sbin/nginx -s reload 重启 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf 启动

  • nginx
  • 2020/8/18
  • 1,004