码迷,mamicode.com
首页 >  
搜索关键字:nginx ssi unsafe    ( 32652个结果
SqlServer 查运行进程
SELECT SPID = er.session_id ,Status = ses.status ,[Login] = ses.login_name ,Host = ses.host_name ,BlkBy = er.blocking_session_id ,DBName = DB_Name(er. ...
分类:数据库   时间:2020-06-24 13:52:05    阅读次数:85
loj 3301 「联合省选 2020 A」魔法商店 - 拟阵 - 保序回归
题目传送门 传送门 整个联考的区分度主要在会不会保序回归,次要在常数,有毒。。。 关于以下使用的定理和结论的证明以及定义,请自行翻 2018 集训队论文。因为我都不会证。 显然问题是给定一个拟阵 $M$ 和两个基 $I_a$ 以及 $I_b$,定义 $w(I) = \sum_{x\in I} z_x ...
分类:其他好文   时间:2020-06-24 13:38:14    阅读次数:159
项目上线配置
const express = require('express') const app = express() app.use(express.static('./dist')) app.listen(8081, () => { console.log('server running... at  ...
分类:其他好文   时间:2020-06-24 11:55:17    阅读次数:50
图片懒加载高性能实现(IntersectionObserver方法)
页面img标签 <img class="lazy" src="placeholder-image.jpg" data-src="image-to-lazy-load-1x.jpg" data-srcset="image-to-lazy-load-2x.jpg 2x, image-to-lazy-lo ...
分类:其他好文   时间:2020-06-24 11:51:11    阅读次数:72
nginx编译增加模块
查看当前编译 nginx -V 增加 --with-http_stub_status_module 监控nginx状态 进入我们之前的解压包路径 ./configure --prefix=/data/nginx --with-stream --with-http_stub_status_module ...
分类:其他好文   时间:2020-06-24 11:48:29    阅读次数:61
docker部署django+uwsgi+nginx+mariadb运行环境
docker部署Django运行环境 mariadb docker pull mariadb:10.2 mkdir /data/mysql useradd mysql chown -R mysql:mysql /data/mysql docker run -itd --name maria-test ...
分类:数据库   时间:2020-06-24 09:18:00    阅读次数:65
1095 Cars on Campus (30分)(排序)
1095 Cars on Campus (30分) Zhejiang University has 8 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers ...
分类:编程语言   时间:2020-06-24 00:20:12    阅读次数:73
nginx
安装htpasswd htpasswd是Apache密码生成工具,Nginx支持auth_basic认证,因此我门可以将生成的密码用于Nginx中,输入一行命令即可安装:yum -y install httpd-tools ,参数如下: htpasswd -c ./passwd username s ...
分类:其他好文   时间:2020-06-23 19:44:06    阅读次数:66
Nginx-10.php-nginx-mysql联动
一、nginx+phpnginx配置文件中增加以下内容 cat /usr/local/nginx/conf/nginx.conf server { listen 80; server_name www.example.com; location / { root html; index index. ...
分类:数据库   时间:2020-06-23 19:38:22    阅读次数:57
Nginx-8.nginx反向代理监控虚拟IP地址
一、 编写nginx反向代理配置 worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on ...
分类:其他好文   时间:2020-06-23 19:09:56    阅读次数:115
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!