Nginx 服务器

Nginx的常见问题

2018-10-16  本文已影响6人  全满

小结:
按照文件读取的顺序进行访问

Nginx的性能优化

ab -n 2000 -c 2 http://127.0.0.1/
-n 总的请求数
-c 并发数
-k 是否开启长连接

SQL注入

SQL注入攻击是黑客对数据库进行攻击的常用手段之一。随着B/S模式应用开发的发展,使用这种模式编写应用程序的程序员也越来越多。但是由于程序员的水平及经验也参差不齐,相当大一部分程序员在编写代码的时候,没有对用户输入数据的合法性进行判断,使应用程序存在安全隐患。用户可以提交一段数据库查询代码,根据程序返回的结果,获得某些他想得知的数据,这就是所谓的SQL Injection,即SQL注入。

Nginx的分类(三类)

windows的server配置与Linux的区别

//windows
server {
        listen       80;
        server_name  localhost;

        location / {
            alias   C:/Users/caoan/Desktop/nginx-1.14.0/html;
            index  index.html index.htm;
        }
        location /image/ {
            alias   C:/Users/caoan/Desktop/nginx-1.14.0/local/myImage/;
            autoindex on;
        }
}
image.png
//linux
server{
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
        }
        location /image/ {
            root   /usr/local/myImage/;
            autoindex on;
        }
}
image.png
上一篇下一篇

猜你喜欢

热点阅读