Linux基礎(day49)

12.6 Nginx安裝

Nginx安裝目錄概要

Nginx安裝

  1. 切換到/usr/local/src/目錄下
[root@hanfeng ~]# cd /usr/local/src/
[root@hanfeng src]#
  1. 下載Nginx安裝包
[root@hanfeng src]# wget http://nginx.org/download/nginx-1.12.1.tar.gz
  1. 解壓安裝包
[root@hanfeng src]# tar zxf nginx-1.12.1.tar.gz
[root@hanfeng src]#
  1. 切換到nginx-1.12.1目錄下
[root@hanfeng src]# cd nginx-1.12.1
[root@hanfeng nginx-1.12.1]#
  1. 初始化./configure --prefix=/usr/local/nginx
[root@hanfeng nginx-1.12.1]# ./configure --prefix=/usr/local/nginx
  1. 而後編譯make && make install
[root@hanfeng nginx-1.12.1]# make && make install

7查看nginx目錄javascript

  • conf目錄,就是配置文件目錄
  • html目錄,樣例文件
  • logs目錄,存放日誌的
  • sbin目錄,核心進程目錄
[root@hanfeng nginx-1.12.1]# ls /usr/local/nginx/
conf  html  logs  sbin
[root@hanfeng nginx-1.12.1]#
  1. 支持-t 檢查配置文件語法錯誤
[root@hanfeng nginx-1.12.1]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@hanfeng nginx-1.12.1]#
  1. 給nginx建立啓動腳本,放在/etc/init.d/nginx,配置文件內容
[root@hanfeng nginx-1.12.1]# vim /etc/init.d/nginx

將如下文件拷貝進去
#!/bin/bash
# chkconfig: - 30 21
# description: http service.
# Source Function Library
. /etc/init.d/functions
# Nginx Settings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
RETVAL=0
prog="Nginx"
start() 
{
    echo -n $"Starting $prog: "
    mkdir -p /dev/shm/nginx_temp
    daemon $NGINX_SBIN -c $NGINX_CONF
    RETVAL=$?
    echo
    return $RETVAL
}
stop() 
{
    echo -n $"Stopping $prog: "
    killproc -p $NGINX_PID $NGINX_SBIN -TERM
    rm -rf /dev/shm/nginx_temp
    RETVAL=$?
    echo
    return $RETVAL
}
reload()
{
    echo -n $"Reloading $prog: "
    killproc -p $NGINX_PID $NGINX_SBIN -HUP
    RETVAL=$?
    echo
    return $RETVAL
}
restart()
{
    stop
    start
}
configtest()
{
    $NGINX_SBIN -c $NGINX_CONF -t
    return 0
}
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  reload)
        reload
        ;;
  restart)
        restart
        ;;
  configtest)
        configtest
        ;;
  *)
        echo $"Usage: $0 {start|stop|reload|restart|configtest}"
        RETVAL=1
esac
exit $RETVAL

而後保存退出
  1. 更改配置文件的權限
[root@hanfeng nginx-1.12.1]# chmod 755 /etc/init.d/nginx
[root@hanfeng nginx-1.12.1]#
  1. 將nginx加入到服務列表裏
[root@hanfeng nginx-1.12.1]# chkconfig --add nginx
[root@hanfeng nginx-1.12.1]#
  1. 配置開啓啓動nginx服務
[root@hanfeng nginx-1.12.1]# chkconfig nginx on 
[root@hanfeng nginx-1.12.1]#
  1. 定義配置文件,默認conf目錄下是有一個nginx.conf文件的,但咱們不使用它,使用本身配置的
[root@hanfeng nginx-1.12.1]# cd /usr/local/nginx/conf/
[root@hanfeng conf]# ls
fastcgi.conf            koi-utf             nginx.conf           uwsgi_params
fastcgi.conf.default    koi-win             nginx.conf.default   uwsgi_params.default
fastcgi_params          mime.types          scgi_params          win-utf
fastcgi_params.default  mime.types.default  scgi_params.default
[root@hanfeng conf]# mv nginx.conf nginx.conf.1
[root@hanfeng conf]#
  1. 建立一個配置文件,配置文件內容
[root@hanfeng conf]# vim nginx.conf

在配置文件中添加如下內容
user nobody nobody;    // user定義啓動nginx的用戶
worker_processes 2;    //定義子進程有幾個
error_log /usr/local/nginx/logs/nginx_error.log crit;   //錯誤日誌
pid /usr/local/nginx/logs/nginx.pid;  // PID所在
worker_rlimit_nofile 51200;   //nginx最多能夠打開文件的上限
events
{
use epoll;                                   //使用epoll模式
worker_connections 6000;      // 進程最大有多少個鏈接
}

http
{
    include mime.types;
    default_type application/octet-stream;
    server_names_hash_bucket_size 3526;
    server_names_hash_max_size 4096;
    log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'
    ' $host "$request_uri" $status'
    ' "$http_referer" "$http_user_agent"';
    sendfile on;
    tcp_nopush on;
    keepalive_timeout 30;
    client_header_timeout 3m;
    client_body_timeout 3m;
    send_timeout 3m;
    connection_pool_size 256;
    client_header_buffer_size 1k;
    large_client_header_buffers 8 4k;
    request_pool_size 4k;
    output_buffers 4 32k;
    postpone_output 1460;
    client_max_body_size 10m;
    client_body_buffer_size 256k;
    client_body_temp_path /usr/local/nginx/client_body_temp;
    proxy_temp_path /usr/local/nginx/proxy_temp;
    fastcgi_temp_path /usr/local/nginx/fastcgi_temp;
    fastcgi_intercept_errors on;
    tcp_nodelay on;
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 8k;
    gzip_comp_level 5;
    gzip_http_version 1.1;
    gzip_types text/plain application/x-javascript text/css text/htm 
    application/xml;
    server        //一個server 對應一個虛擬主機,定義這個,才能正常訪問網站  下面一整段,就是一個默認的虛擬主機
    {
        listen 80;
        server_name localhost;            //網站域名
        index index.html index.htm index.php;
        root /usr/local/nginx/html;            //網站的根目錄
        location ~ \.php$                         //配置解析php的部分
        {
            include fastcgi_params;
            fastcgi_pass unix:/tmp/php-fcgi.sock;        //nginx經過這一行配置來調用php-fpm服務
           # fastcgi_pass 127.0.0.1:9000;            //若是php-fpm監聽的是9000端口,直接這樣寫配置便可
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
        }    
    }
}

而後保存退出
  • 做爲一個網站的服務,必須監聽一個端口,默認監聽的是80端口,假如沒有配置 server 這個幾行,那麼nginx將識別不到監聽端口,致使服務不可用
  1. 編譯好配置文件,檢查配置文件是否存在語法錯誤
[root@hanfeng conf]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@hanfeng conf]#
  1. 啓動nginx服務
[root@hanfeng conf]# /etc/init.d/nginx  start
Starting nginx (via systemctl):                            [  肯定  ]
[root@hanfeng conf]#
  1. 查看nginx進程
[root@hanfeng conf]# ps aux |grep nginx
root     16411  0.0  0.0  20996   624 ?        Ss   21:53   0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody   16412  0.0  0.3  23440  3212 ?        S    21:53   0:00 nginx: worker process
nobody   16413  0.0  0.3  23440  3212 ?        S    21:53   0:00 nginx: worker process
root     16415  0.0  0.0 112676   984 pts/0    R+   21:55   0:00 grep --color=auto nginx
[root@hanfeng conf]#
  1. 測試nginx,這裏能夠輸入curl localhost 或者輸入curl 127.0.0.1 獲得的結果相同
[root@hanfeng conf]# curl localhost
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
[root@hanfeng conf]#
  1. 測試解析php,新建一個1.php文件
[root@hanfeng conf]# vim /usr/local/nginx/html/1.php
寫入
<?php
echo "this is nginx test page.";
[root@hanfeng conf]# curl localhost/1.php
this is nginx test page.[root@hanfeng conf]#

12.7 默認虛擬主機

默認虛擬主機目錄概要

  • vim /usr/local/nginx/conf/nginx.conf //增長include vhost/*.conf
  • mkdir /usr/local/nginx/conf/vhost
  • cd !$; vim default.conf //加入以下內容
server
{
    listen 80 default_server;  // 有這個標記的就是默認虛擬主機
    server_name aaa.com;
    index index.html index.htm index.php;
    root /data/wwwroot/default;
}
  • mkdir -p /data/wwwroot/default/
  • echo 「This is a default site.」>/data/wwwroot/default/index.html
  • /usr/local/nginx/sbin/nginx -t
  • /usr/local/nginx/sbin/nginx -s reload
  • curl localhost
  • curl -x127.0.0.1:80 123.com

默認虛擬主機

  1. 首先刪除/usr/local/nginx/conf/nginx.conf 中的一部份內容——>目的是修改nginx.cnf配置,刪除默認的虛擬主機配置,從新定義虛擬主機配置所在路徑
[root@hanfeng conf]# vim /usr/local/nginx/conf/nginx.conf 

刪除的內容
  server
    {
        listen 80;
        server_name localhost;
        index index.html index.htm index.php;
        root /usr/local/nginx/html;
        location ~ \.php$
        {
            include fastcgi_params;
            fastcgi_pass unix:/tmp/php-fcgi.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
        }
    }
  1. 而後在配置文件中增長一行,include vhost/*.conf
[root@hanfeng conf]# vim /usr/local/nginx/conf/nginx.conf 

增長其中的一行
    application/xml;
    include vhost/*.conf;
}      
   
而後保存退出
  1. 新建/usr/local/nginx/conf/vhost目錄
[root@hanfeng conf]# mkdir /usr/local/nginx/conf/vhost
[root@hanfeng conf]#
  1. 進入到/usr/local/nginx/conf/vhost目錄下
[root@hanfeng conf]# cd /usr/local/nginx/conf/vhost
[root@hanfeng vhost]#
  1. 定義新增虛擬主機的配置
[root@hanfeng vhost]# vim aaa.com.conf

添加的文件內容
server
{
    listen 80 default_server;  
    server_name aaa.com;
    index index.html index.htm index.php;
    root /data/wwwroot/default;
}

而後保存退出
  1. 建立目錄
[root@hanfeng vhost]# mkdir -p /data/wwwroot/default/
[root@hanfeng vhost]#
  1. 切換到/data/wwwroot/default/目錄下,在目錄下寫入一些東西
[root@hanfeng vhost]# cd /data/wwwroot/default/
[root@hanfeng default]#
  1. 新建index.html,寫入一些東西
[root@hanfeng default]# vim index.html
寫入
This is the default site.
而後保存退出
  1. 建測配置文件是否存在語法錯誤
[root@hanfeng default]# /usr/local/nginx/sbin/nginx -t
  • 錯誤
nginx: [emerg] unexpected "}" in /usr/local/nginx/conf/nginx.conf:47
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed
  • 解決方法:
    • 是由於在/usr/local/nginx/conf/nginx.conf文件中include vhost/*.co後面缺乏了;
在後面添加 ; 便可
include vhost/*.conf;
  1. 再來檢查配置文件是否存在語法錯誤
[root@hanfeng default]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
  1. 再修改配置文件後,通常都 -t 去檢查下,防止誤操做
  2. 修改完,重啓nginx或者從新加載nginx
  • 使用/etc/init.d/nginx restart 或者 /usr/local/nginx/sbin/nginx -s reload從新加載
[root@hanfeng default]# /usr/local/nginx/sbin/nginx -s reload
[root@hanfeng default]#
  1. 測試訪問默認頁
  • 出來的就是以前/data/wwwroot/default/index.html裏面定義的內容
[root@hanfeng default]# curl localhost
This is the default site.
[root@hanfeng default]# curl -x127.0.0.1:80 bbb.com
This is the default site.
[root@hanfeng default]#
  1. nginx支持include這種語法

定義默認虛擬主機

由於修改了nginx.conf的配置,如今看到的默認索引頁,是咱們剛剛新增的vhost的虛擬主機的索引頁了 定義默認虛擬主機的兩種辦法: 1.默認虛擬主機,是根據目錄的第一個.conf了進行選擇,因此只須要在vhost目錄下依次建立就能夠了,固然這種方法不智能 2.只須要在vhost目錄的.conf配置文件內,加上一個「default_server 」便可,把當前的這個配置對應的網站設置爲第一個默認虛擬主機php

12.8 Nginx用戶認證

Nginx用戶認證目錄概要

  • vim /usr/local/nginx/conf/vhost/test.com.conf//寫入以下內容
server
{
    listen 80;
    server_name test.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;
    
    location  /
    {
        auth_basic              "Auth";
        auth_basic_user_file   /usr/local/nginx/conf/htpasswd;
    }
}
  • yum install -y httpd
  • htpasswd -c /usr/local/nginx/conf/htpasswd aming
  • -t && -s reload //測試配置並從新加載
  • mkdir /data/wwwroot/test.com
  • echo 「test.com」>/data/wwwroot/test.com/index.html
  • curl -x127.0.0.1:80 test.com -I//狀態碼爲401說明須要驗證
  • curl -uaming:passwd 訪問狀態碼變爲200
  • 編輯windows的hosts文件,而後在瀏覽器中訪問test.com會有輸入用戶、密碼的彈窗
  • 針對目錄的用戶認證
location  /admin/
    {
        auth_basic              "Auth";
        auth_basic_user_file   /usr/local/nginx/conf/htpasswd;
}

Nginx用戶認證

  1. 首先切換到usr/local/nginx/conf/vhost/目錄下
[root@hanfeng ~]# cd /usr/local/nginx/conf/vhost/
[root@hanfeng vhost]#
  1. 新建新建一個虛擬主機test.com.conf,並編輯
[root@hanfeng vhost]# ls
aaa.com.conf
[root@hanfeng vhost]# vim test.com.conf

添加如下內容
server
{
    listen 80;
    server_name test.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;
    
    location  /                    //表示全站,都須要進行用戶認證
    #location  /admin                                     // 這個地方只要加上」 /admin 」 就變成 針對這個站點的「admin」 這個目錄須要用戶認證
    #location  ~ admin.php                          //若是把這行這樣寫,就會變成,匹配 「 admin.php 」這個頁面的時候才須要用戶認證
    {
        auth_basic              "Auth";            //定義用戶認證的名字
        auth_basic_user_file   /usr/local/nginx/conf/htpasswd;         //用戶名密碼文件
    }
}

保存退出
  1. 在配置完成後,須要生成密碼文件
  2. 在生成密碼文件,須要用到Apache生成密碼文件的工具「 htpasswd 」
  • 若本機已經安裝過Apache,能夠直接使用命令htpasswd進行生成
/usr/local/apache2.4/bin/htpasswd
  • 如果本機未安裝Apache,可直接 yum install -y httpd 進行安裝,由於yum安裝的,因此工具存放在/usr/bin/下,能夠直接使用htpasswd
yum install -y httpd
  1. 這裏因爲未安裝過Apache,因此先yum安裝
[root@hanfeng vhost]# yum install -y httpd 

在yum安裝後,能夠直接使用htpasswd命令
  1. htpasswd指定文件,生成用戶
[root@hanfeng vhost]# htpasswd -c /usr/local/nginx/conf/htpasswd hanfeng
New password:                     //密碼hanfeng
Re-type new password: 
Adding password for user hanfeng
[root@hanfeng vhost]#
  1. 使用cat 命令查看/usr/local/nginx/conf/htpasswd 文件,會看到生成了一行字符串
[root@hanfeng vhost]# cat /usr/local/nginx/conf/htpasswd 
hanfeng:$apr1$Vvig1g73$oHYs5Ng/ubqoYXzZT4TWP/
[root@hanfeng vhost]#
  1. 關於htpasswd -c 命令 第一次建立的時候由於沒有htpasswd這個文件,須要-c建立,第二使用的時候由於已經有這個htpasswd文件了,將再也不須要-c 選項,若是還繼續使用-c 這個選項,將會重置 htpasswd裏的東西
  2. 再來htpasswd指定文件,生成另外一個用戶
[root@hanfeng vhost]# htpasswd /usr/local/nginx/conf/htpasswd gurui
New password: 
Re-type new password: 
Adding password for user gurui
[root@hanfeng vhost]# cat /usr/local/nginx/conf/htpasswd 
hanfeng:$apr1$Vvig1g73$oHYs5Ng/ubqoYXzZT4TWP/
gurui:$apr1$mqc2Dgwa$qVvurqGN6gj8hX3tEpQ6j/
[root@hanfeng vhost]#
  1. 檢查配置nginx文件是否存在語法錯誤
[root@hanfeng vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@hanfeng vhost]#
  1. 從新加載配置文件
  • 在從新加載的時候,若配置文件中存在錯誤,配置文件將不會生效;
  • 若是是直接使用restart,若是配置有錯,將會直接影響到網站的運行
[root@hanfeng vhost]# /usr/local/nginx/sbin/nginx -s reload
[root@hanfeng vhost]#
  1. 測試
[root@hanfeng vhost]# curl -x127.0.0.1:80 test.com
<html>
<head><title>401 Authorization Required</title></head>
<body bgcolor="white">
<center><h1>401 Authorization Required</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>
[root@hanfeng vhost]# curl -x127.0.0.1:80 test.com -I
HTTP/1.1 401 Unauthorized
Server: nginx/1.12.1
Date: Wed, 03 Jan 2018 16:52:23 GMT
Content-Type: text/html
Content-Length: 195
Connection: keep-alive
WWW-Authenticate: Basic realm="Auth"

[root@hanfeng vhost]#
  1. 會提示錯誤碼401,就是須要用戶,因此用curl指定用戶
  2. 這時指定用戶和密碼再來訪問,會提示404,這是由於去訪問index.html,可是還未建立
[root@hanfeng vhost]# curl -uhanfeng:hanfeng -x127.0.0.1:80 test.com
<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>
[root@hanfeng vhost]#
  1. 建立目錄,而後新建index.html
[root@hanfeng vhost]# mkdir /data/wwwroot/test.com
[root@hanfeng vhost]# echo 「test.com」>/data/wwwroot/test.com/index.html
[root@hanfeng vhost]#
  1. 這時再來訪問,會看到顯示正常
[root@hanfeng vhost]# curl -uhanfeng:hanfeng -x127.0.0.1:80 test.com
「test.com」
[root@hanfeng vhost]#
  1. 這裏的用戶認證是針對整站

針對某一個目錄下,才須要認證

  • 好比訪問admin的時候,才須要認證
  1. 首先訪問admin嘗試下
[root@hf-01 vhost]# curl -uhanfeng:hanfeng -x127.0.0.1:80 test.com/admin/
<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>
[root@hf-01 vhost]#
  1. 而後在/usr/local/nginx/conf/vhost/test.com.conf配置文件中定義,只須要在location / 後加上admin/ 目錄便可
[root@hf-01 vhost]# vim test.com.conf

在location  / 後加上admin/ 目錄
server
{
    listen 80;
    server_name test.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;

    location  /admin/
    {
        auth_basic              "Auth";
        auth_basic_user_file   /usr/local/nginx/conf/htpasswd;
    }
}
保存退出
  1. 檢查配置文件是否存在語法錯誤
[root@hf-01 vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@hf-01 vhost]#
  1. 從新加載配置文件
[root@hf-01 vhost]# /usr/local/nginx/sbin/nginx -s reload
[root@hf-01 vhost]#
  1. 這時候再來訪問test.com,就不須要指定用戶名和密碼了
[root@hf-01 vhost]# curl -x127.0.0.1:80 test.com
「test.com」
[root@hf-01 vhost]#

6.訪問test.com/admin/目錄css

[root@hf-01 vhost]# curl -x127.0.0.1:80 test.com/admin/
<html>
<head><title>401 Authorization Required</title></head>
<body bgcolor="white">
<center><h1>401 Authorization Required</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>
[root@hf-01 vhost]#
  1. 這時建立一個測試頁面
  2. 先新建目錄
[root@hf-01 vhost]# mkdir /data/wwwroot/test.com/admin
[root@hf-01 vhost]#
  1. 而後在admin目錄下新建index.html
[root@hf-01 vhost]# echo "test.com admin dir" > /data/wwwroot/test.com/admin
in/index.html
[root@hf-01 vhost]#
  1. 這時再來訪問 test.com/admin/ 會顯示401,可是指定用戶名和密碼後就會正常顯示
[root@hf-01 vhost]# curl -x127.0.0.1:80 test.com/admin/
<html>
<head><title>401 Authorization Required</title></head>
<body bgcolor="white">
<center><h1>401 Authorization Required</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>
[root@hf-01 vhost]# curl -uhanfeng:hanfeng -x127.0.0.1:80 test.com/admin/
test.com admin dir
[root@hf-01 vhost]#

針對URL

  • 好比針對admin.php
  1. 首先在配置文件/usr/local/nginx/conf/vhost/test.com.conf下定義,在 location 後加~ admin.php便可
[root@hf-01 vhost]# vim test.com.conf

在 location  後加~ admin.php便可
server
{
    listen 80;
    server_name test.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;

    location  ~ admin.php
    {
        auth_basic              "Auth";
        auth_basic_user_file   /usr/local/nginx/conf/htpasswd;
    }
}
保存退出
  1. 檢查配置文件是否存在語法錯誤
[root@hf-01 vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@hf-01 vhost]#
  1. 從新加載配置文件
[root@hf-01 vhost]# /usr/local/nginx/sbin/nginx -s reload
[root@hf-01 vhost]#
  1. 這時候就能夠直接訪問 test.com/admin/,不須要指定用戶名和密碼了,可是在訪問admin.php的時候,則會顯示401——>狀態碼爲401說明須要驗證
[root@hf-01 vhost]# curl -x127.0.0.1:80 test.com/admin/
test.com admin dir
[root@hf-01 vhost]# curl -x127.0.0.1:80 test.com/admin.php
<html>
<head><title>401 Authorization Required</title></head>
<body bgcolor="white">
<center><h1>401 Authorization Required</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>
[root@hf-01 vhost]#

12.9 Nginx域名重定向

Nginx域名重定向目錄概要

  • 更改test.com.conf
server
{
    listen 80;
    server_name test.com test1.com test2.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;
    if ($host != 'test.com' ) {
        rewrite  ^/(.*)$  http://test.com/$1  permanent;
    }
}
  • server_name後面支持寫多個域名,這裏要和httpd的作一個對比
  • permanent爲永久重定向,狀態碼爲301,若是寫redirect則爲302

Nginx域名重定向

  • 在Nginx裏「server_name」 支持跟多個域名;可是Apache「server_name」只能跟一個域名,須要跟多個域名,須要使用Alisa;
  • 在Nginx的conf配置文件裏「server_name 」 設置了多個域名,就會使網站的權重變了,到底須要哪一個域名爲主站點,因此須要域名重定向
  1. 修改配置文件vim /usr/local/nginx/conf/vhost/test.com.conf,(這裏刪除用戶認證那一塊代碼)
[root@hf-01 vhost]# vim test.com.conf

server
{
    listen 80;
    server_name test.com test1.com test2.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;
    if ($host != 'test.com' ) {
        rewrite  ^/(.*)$  http://test.com/$1  permanent;
    }
}
保存退出
  • if ($host != ‘test.com’ ) //假如域名,「!=」不等於 test.com,將執行下面的腳本
  • rewrite ^/(.)$ http://test.com/$1 permanent; // ^/(.)$ 正式寫法 http://$host/(.*)$ 這段能夠直接省略掉的,同時還能夠加上一些規則,
  • permanent 就是301的意思
  • 若是想弄成302,只須要更改成 redirect
  1. 檢查配置文件語法錯誤,並從新加載配置文件
[root@hf-01 vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@hf-01 vhost]# /usr/local/nginx/sbin/nginx -s reload
[root@hf-01 vhost]#
  1. 測試,用test2.com去訪問,會看到顯示301,給它重定向到了http://test.com/index.html
[root@hf-01 vhost]# curl -x127.0.0.1:80 test2.com/index.html -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.12.1
Date: Wed, 03 Jan 2018 22:23:52 GMT
Content-Type: text/html
Content-Length: 185
Connection: keep-alive
Location: http://test.com/index.html

[root@hf-01 vhost]#
  1. 定義一個不一樣的網址再來測試訪問
[root@hanfeng vhost]# curl -x127.0.0.1:80 test2.com/fgdgfdg -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.12.1
Date: Thu, 04 Jan 2018 12:57:12 GMT
Content-Type: text/html
Content-Length: 185
Connection: keep-alive
Location: http://test.com/fgdgfdg

[root@hanfeng vhost]#
  1. 它會訪問默認虛擬主機
  2. 這時如果隨意訪問一個不存在的網址,則會顯示404
[root@hf-01 vhost]# curl -x127.0.0.1:80 hanfeng.com/admin/index.html -I
HTTP/1.1 404 Not Found
Server: nginx/1.12.1
Date: Wed, 03 Jan 2018 22:27:37 GMT
Content-Type: text/html
Content-Length: 169
Connection: keep-alive

[root@hf-01 vhost]#

擴展

nginx.conf 配置詳解1html

nginx.conf 配置詳解2java

nginx rewrite四種flag node

nginx rewrite四種flag linux

相關文章
相關標籤/搜索