Linux下的Ngnix服务器部署静态页

一、安装FTP

vsftpd 的名字代表”very secure FTP daemon”, 安全是它的开发者 Chris Evans 考虑的首要问题之一。在这个 FTP 服务器设计开发的最开始的时候,高安全性就是它的目标。

1.安装vsftp

yum install vsftpd

2.设置开机自启

chkconfig vsftpd on

3.启动vsftp服务

service vsftpd start

​ 检查一下是否启动

打开浏览器输入ftp://xxx.xx.xx.xx.

或者执行命令(ftp localhost) 输入用户名ftp,密码随便(因为默认是允许匿名的)

登录成功,就代表ftp服务可用了。

4.配置vsftp的相关文件

默认的配置文件是/etc/vsftpd/vsftpd.conf 我们用vim 打开(可能有人不熟悉vim操作,不必去Google了,很简单的......)

vi /etc/vsftpd/vsftpd.conf

执行上面的代码,进入文本编辑器,按下i 进入文本编辑,找到anonymous_enable=YES 将YES 改为NO(取消匿名登录)。然后找到以下代码,

#chroot_list_enable=YES

# (default follows)

#chroot_list_file=/etc/vsftpd.chroot_list

将第一行的# 去掉。

退出编辑器的步骤是 1 按下esc键 2同时按下 shift +: 两个键 3这是光标跳到文档最后一行 输入wq ,按下enter 退出。(vim 的这几个操作还是比较简单的)

service vsftpd restart 重启vsftp。

5. 添加自己的用户名

useradd xxxx xxxx 就是 你的名字 

passwd xxxx 输入你的密码(连续输入两次)

你的网页的默认目录就是/home/xxxx 了,现在虚拟机的目录貌似都没有/public_html 这个目录了。

cat /etc/passwd 可以用来查看当前的用户

6.现在可以用软件上传文件了

二、Nginx配置文件配置

下面是配置文件:

 

#user nobody;                                   # 运行 nginx 的所属组和所有者

worker_processes 1;                        #工作进程:数目。根据硬件调整,通常等于cpu数量或者2倍cpu数量。

#错误日志存放路径
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;                           # nginx进程pid存放路径


events {
worker_connections 1024;               # 一个工作进程的最大连接数量
}


http {
include mime.types;                        #指定mime类型,由mime.type来定义
default_type application/octet-stream;

# 日志格式设置
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;                                                                                 #用log_format指令设置日志格式后,需要用access_log来指定日志文件存放路径

sendfile on;                                                                                                                      #指定nginx是否调用sendfile函数来输出文件,对于普通应用,必须设置on。如果用来进行下载等应用磁盘io重负载应用,可设着off,以平衡磁盘与网络io处理速度,降低系统uptime。
#tcp_nopush on;                                                                                                              #此选项允许或禁止使用socket的TCP_CORK的选项,此选项仅在sendfile的时候使用

#keepalive_timeout 0;                                                                                                      #keepalive超时时间
keepalive_timeout 65;

#gzip on;                                                                                                                          #开启gzip压缩服务

#虚拟主机
server {
listen 80;                                                                                                                          #配置监听端口号
server_name localhost;                                                                                                   #配置访问域名,域名可以有多个,用空格隔开

#charset koi8-r;                                                                                                                #字符集设置

#access_log logs/host.access.log main;

location / {
root html;
index index.html index.htm;
}


#错误跳转页
#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ { #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。
# root html; #根目录
# fastcgi_pass 127.0.0.1:9000; #请求转向定义的服务器列表
# fastcgi_index index.php; # 如果请求的Fastcgi_index URI是以 / 结束的, 该指令设置的文件会被附加到URI的后面并保存在变量$fastcig_script_name中
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}


# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;

# location / {
# root html;
# index index.html index.htm;
# }
#}


# HTTPS server
#
#server {
# listen 443 ssl; #监听端口
# server_name localhost; #域名

# ssl_certificate cert.pem; #证书位置
# ssl_certificate_key cert.key; #私钥位置

# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5; #密码加密方式
# ssl_prefer_server_ciphers on; # ssl_prefer_server_ciphers on; #


# location / {
# root html;
# index index.html index.htm;
# }
#}

}

1、 root 字段最好写在 location 字段的外边,防止出现无法加载 css、js 的情况。因为 css、js 的加载并不是自动的,nginx 无法执行,需要额外的配置来返回资源,所以,对于静态页面的部署,这样做是最为方便的。

2、如果需要,可以配置多个server

3、一个经典配置

server {
    listen 80;
    server_name _;
    root /var/www/website;
    index index.html;
}

这样就能够寻找/home/website下的index.html资源了。每个网站的入口地址都应该是index,可以在website下再设置分目录,访问的时候加上分目录名字。

我们把自己的网站放到/home/website下,重载或者重新启动就可以访问了。

简单location规则

    location = /websitename {
      rewrite ^/.* / break;
      try_files index.html =404;
    }

 

 

重载配置文件
$ sudo nginx -s reload
重启
$ sudo service nginx restart
停止
$ sudo nginx -s stop

 

三、location正则写法

    location指令的作用是根据用户请求的URI来执行不同的应用,也就是根据用户请求的网站URL进行匹配,匹配成功即进行相关的操作。

一个示例:

location = / {
 # 精确匹配 / ,主机名后面不能带任何字符串
 [ configuration A ] 
}

location / {
 # 因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求
 # 但是正则和最长字符串会优先匹配
 [ configuration B ] 
}

location /documents/ {
 # 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
 # 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
 [ configuration C ] 
}

location ~ /documents/Abc {
 # 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
 # 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
 [ configuration CC ] 
}

location ^~ /images/ {
 # 匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采用这一条。
 [ configuration D ] 
}

location ~* \.(gif|jpg|jpeg)$ {
 # 匹配所有以 gif,jpg或jpeg 结尾的请求
 # 然而,所有请求 /images/ 下的图片会被 config D 处理,因为 ^~ 到达不了这一条正则
 [ configuration E ] 
}

location /images/ {
 # 字符匹配到 /images/,继续往下,会发现 ^~ 存在
 [ configuration F ] 
}

location /images/abc {
 # 最长字符匹配到 /images/abc,继续往下,会发现 ^~ 存在
 # F与G的放置顺序是没有关系的
 [ configuration G ] 
}

location ~ /images/abc/ {
 # 只有去掉 config D 才有效:先最长匹配 config G 开头的地址,继续往下搜索,匹配到这一条正则,采用
  [ configuration H ] 
}

location ~* /js/.*/\.js
  1. 已=开头表示精确匹配,如 A 中只匹配根目录结尾的请求,后面不能带任何字符串。
  2. ^~ 开头表示uri以某个常规字符串开头,不是正则匹配
  3. ~ 开头表示区分大小写的正则匹配;
  4. ~* 开头表示不区分大小写的正则匹配
  5. / 通用匹配, 如果没有其它匹配,任何请求都会匹配到

顺序 no优先级:

(location =) > (location 完整路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部分起始路径) > (/)

上面的匹配结果

按照上面的location写法,以下的匹配示例成立:

  1. / -> config A:精确完全匹配,即使/index.html也匹配不了
  2. /downloads/download.html -> config B:匹配B以后,往下没有任何匹配,采用B
  3. /images/1.gif -> configuration D:匹配到F,往下匹配到D,停止往下
  4. /images/abc/def -> config D:最长匹配到G,往下匹配D,停止往下。你可以看到 任何以/images/开头的都会匹配到D并停止,FG写在这里是没有任何意义的,H是永远轮不到的,这里只是为了说明匹配顺序
  5. /documents/document.html -> config C:匹配到C,往下没有任何匹配,采用C
  6. /documents/1.jpg -> configuration E:匹配到C,往下正则匹配到E
  7. /documents/Abc.jpg -> config CC:最长匹配到C,往下正则顺序匹配到CC,不会往下到E

实际使用建议

所以实际使用中,个人觉得至少有三个匹配规则定义,如下:

#直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。
#这里是直接转发给后端应用服务器了,也可以是一个静态首页
# 第一个必选规则
location = / {
  proxy_pass http://tomcat:8080/index
}
# 第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项
# 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
location ^~ /static/ {
  root /webroot/static/;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
  root /webroot/res/;
}
#第三个规则就是通用规则,用来转发动态请求到后端应用服务器
#非静态文件请求就默认是动态请求,自己根据实际把握
#毕竟目前的一些框架的流行,带.php,.jsp后缀的情况很少了
location / {
  proxy_pass http://tomcat:8080/
}

点我查看其他大咖博文
点我查看其他大咖博文二

四、Rewrite规则

rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标志位实现url重写以及重定向。rewrite只能放在server{},location{},if{}中,并且只能对域名后边的除去传递的参数外的字符串起作用,例如 http://seanlook.com/a/we/index.php?id=1&u=str 只对/a/we/index.php重写。语法rewrite regex replacement [flag];

如果相对域名或参数字符串起作用,可以使用全局变量匹配,也可以使用proxy_pass反向代理。

表明看rewrite和location功能有点像,都能实现跳转,主要区别在于rewrite是在同一域名内更改获取资源的路径,而location是对一类路径做控制访问或反向代理,可以proxy_pass到其他机器。很多情况下rewrite也会写在location里,它们的执行顺序是:

  1. 执行server块的rewrite指令
  2. 执行location匹配
  3. 执行选定的location中的rewrite指令

如果其中某步URI被重写,则重新循环执行1-3,直到找到真实存在的文件;循环超过10次,则返回500 Internal Server Error错误。

flag标志位

  1. last : 相当于Apache的[L]标记,表示完成rewrite
  2. break : 停止执行当前虚拟主机的后续rewrite指令集
  3. redirect : 返回302临时重定向,地址栏会显示跳转后的地址
  4. permanent : 返回301永久重定向,地址栏会显示跳转后的地址

因为301和302不能简单的只返回状态码,还必须有重定向的URL,这就是return指令无法返回301,302的原因了。这里 last 和 break 区别有点难以理解:

  1. last一般写在server和if中,而break一般使用在location中
  2. last不终止重写后的url匹配,即新的url会再从server走一遍匹配流程,而break终止重写后的匹配
  3. break和last都能组织继续执行后面的rewrite指令

if指令与全局变量

if判断指令

语法为if(condition){...},对给定的条件condition进行判断。如果为真,大括号内的rewrite指令将被执行,if条件(conditon)可以是如下任何内容:

  1. 当表达式只是一个变量时,如果值为空或任何以0开头的字符串都会当做false
  2. 直接比较变量和内容时,使用=或!=
  3. ~正则表达式匹配,~*不区分大小写的匹配,!~区分大小写的不匹配

-f和!-f用来判断是否存在文件
-d和!-d用来判断是否存在目录
-e和!-e用来判断是否存在文件或目录
-x和!-x用来判断文件是否可执行

例如:

if ($http_user_agent ~ MSIE) {
  rewrite ^(.*)$ /msie/$1 break;
} //如果UA包含"MSIE",rewrite请求到/msid/目录下

if ($http_cookie ~* "id=([^;]+)(?:;|$)") {
  set $id $1;
 } //如果cookie匹配正则,设置变量$id等于正则引用部分

if ($request_method = POST) {
  return 405;
} //如果提交方法为POST,则返回状态405(Method not allowed)。return不能返回301,302

if ($slow) {
  limit_rate 10k;
} //限速,$slow可以通过 set 指令设置

if (!-f $request_filename){
  break;
  proxy_pass http://127.0.0.1; 
} //如果请求的文件名不存在,则反向代理到localhost 。这里的break也是停止rewrite检查

if ($args ~ post=140){
  rewrite ^ http://example.com/ permanent;
} //如果query string中包含"post=140",永久重定向到example.com

location ~* \.(gif|jpg|png|swf|flv)$ {
  valid_referers none blocked www.jefflei.com www.leizhenfang.com;
  if ($invalid_referer) {
    return 404;
  } //防盗链
}

全局变量

下面是可以用作if判断的全局变量

  1. $args : #这个变量等于请求行中的参数,同$query_string
  2. $content_length : 请求头中的Content-length字段。
  3. $content_type : 请求头中的Content-Type字段。
  4. $document_root : 当前请求在root指令中指定的值。
  5. $host : 请求主机头字段,否则为服务器名称。
  6. $http_user_agent : 客户端agent信息
  7. $http_cookie : 客户端cookie信息
  8. $limit_rate : 这个变量可以限制连接速率。
  9. $request_method : 客户端请求的动作,通常为GET或POST。
  10. $remote_addr : 客户端的IP地址。
  11. $remote_port : 客户端的端口。
  12. $remote_user : 已经经过Auth Basic Module验证的用户名。
  13. $request_filename : 当前请求的文件路径,由root或alias指令与URI请求生成。
  14. $scheme : HTTP方法(如http,https)。
  15. $server_protocol : 请求使用的协议,通常是HTTP/1.0或HTTP/1.1。
  16. $server_addr : 服务器地址,在完成一次系统调用后可以确定这个值。
  17. $server_name : 服务器名称。
  18. $server_port : 请求到达服务器的端口号。
  19. $request_uri : 包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。
  20. $uri : 不带请求参数的当前URI,$uri不包含主机名,如”/foo/bar.html”。
  21. $document_uri : 与$uri相同。

例:http://localhost:88/test1/test2/test.php

$host:localhost
$server_port:88
$request_uri:http://localhost:88/test1/test2/test.php
$document_uri:/test1/test2/test.php
$document_root:/var/www/html
$request_filename:/var/www/html/test1/test2/test.php

常用正则

  1. . : 匹配除换行符以外的任意字符
  2. ? : 重复0次或1次
  3. + : 重复1次或更多次
  4. * : 重复0次或更多次
  5. \d :匹配数字
  6. ^ : 匹配字符串的开始
  7. $ : 匹配字符串的介绍
  8. {n} : 重复n次
  9. {n,} : 重复n次或更多次
  10. [c] : 匹配单个字符c
  11. [a-z] : 匹配a-z小写字母的任意一个

小括号()之间匹配的内容,可以在后面通过$1来引用,$2表示的是前面第二个()里的内容。正则里面容易让人困惑的是\转义特殊字符。

rewrite实例

例1:

http {
  # 定义image日志格式
  log_format imagelog '[$time_local] ' $image_file ' ' $image_type ' ' $body_bytes_sent ' ' $status;
  # 开启重写日志
  rewrite_log on;

  server {
    root /home/www;

    location / {
        # 重写规则信息
        error_log logs/rewrite.log notice; 
        # 注意这里要用‘'单引号引起来,避免{}
        rewrite '^/images/([a-z]{2})/([a-z0-9]{5})/(.*)\.(png|jpg|gif)$' /data?file=$3.$4;
        # 注意不能在上面这条规则后面加上“last”参数,否则下面的set指令不会执行
        set $image_file $3;
        set $image_type $4;
    }

    location /data {
        # 指定针对图片的日志格式,来分析图片类型和大小
        access_log logs/images.log mian;
        root /data/images;
        # 应用前面定义的变量。判断首先文件在不在,不在再判断目录在不在,如果还不在就跳转到最后一个url里
        try_files /$arg_file /image404.html;
    }
    location = /image404.html {
        # 图片不存在返回特定的信息
        return 404 "image not found\n";
    }
}

对形如/images/ef/uh7b3/test.png的请求,重写到/data?file=test.png,于是匹配到location /data,先看/data/images/test.png文件存不存在,如果存在则正常响应,如果不存在则重写tryfiles到新的image404 location,直接返回404状态码。

例2:

rewrite ^/images/(.*)_(\d+)x(\d+)\.(png|jpg|gif)$ /resizer/$1.$4?width=$2&height=$3? last;

对形如/images/bla_500x400.jpg的文件请求,重写到/resizer/bla.jpg?width=500&height=400地址,并会继续尝试匹配location。

 

posted @ 2019-09-20 14:10  卖雨伞的小男孩  阅读(1783)  评论(0编辑  收藏  举报