日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

安全服務(wù)器是只允許所需數(shù)量的服務(wù)器。理想情況下,我們將通過(guò)單獨(dú)啟用其他功能來(lái)基于最小系統(tǒng)構(gòu)建服務(wù)器。進(jìn)行最少的配置也有助于調(diào)試。如果該錯(cuò)誤在最小系統(tǒng)中不可用,則分別添加功能,然后繼續(xù)搜索錯(cuò)誤。

這是運(yùn)行Nginx所需的最低配置:

# /etc/nginx/nginx.confevents {}        
# event context have to be defined to consider config valid
http {}
 server {
    listen 80;
    server_name  JAVAtpoint.co  www.javatpoint.co  *.javatpoint.co;

    return 200 "Hello";
  }

Root,Location和try_files指令

Root 指令

root指令用于設(shè)置請(qǐng)求的根目錄,從而允許nginx將傳入的請(qǐng)求映射到文件系統(tǒng)上。

server {
  listen 80;
  server_name javatpoint.co;
  root /var/www/javatpoint.co;
}

它允許nginx根據(jù)請(qǐng)求返回服務(wù)器內(nèi)容:

javatpoint.co:80/index.html     # returns /var/www/learnfk.com/index.html
javatpoint.co:80/foo/index.html # returns /var/www/learnfk.com/foo/index.html

Location指令

location指令用于根據(jù)請(qǐng)求的URI(統(tǒng)一資源標(biāo)識(shí)符)來(lái)設(shè)置配置。

語(yǔ)法為:

location [modifier] path

示例:

location /foo {  # ...}

如果未指定修飾符,則將路徑視為前綴,之后可以跟隨任何內(nèi)容。上面的示例將匹配:

/foo
/fooo
/foo123
/foo/bar/index.html...

我們還可以在給定的上下文中使用多個(gè)location指令:

server {
  listen 80;
  server_name javatpoint.co;
  root /var/www/javatpoint.co;

  location/{
    return 200 "root";
  }

  location /foo {
    return 200 "foo";
  }
}
javatpoint.co:80  /      # => "root"
javatpoint.co:80   /foo    # => "foo"
javatpoint.co:80   /foo123 # => "foo"
javatpoint.co:80   /bar    # => "root"

Nginx還提供了一些可以與 location 指令結(jié)合使用的修飾符。

修飾符已分配優(yōu)先級(jí):

=           - Exact match
^~          - Preferential match
~ && ~*     - Regex match
no modifier - Prefix match

首先,nginx將檢查所有精確匹配項(xiàng)。如果不存在,它將尋找優(yōu)先選項(xiàng)。如果此匹配也失敗,則將按其出現(xiàn)順序測(cè)試正則表達(dá)式匹配。如果其他所有操作均失敗,則將使用最后一個(gè)前綴匹配。

location /match {
  return 200 'Prefix match: will match everything that starting with /match';
}

location ~* /match[0-9] {
  return 200 'Case insensitive regex match';
}

location ~ /MATCH[0-9] {
  return 200 'Case sensitive regex match';
}

location ^~ /match0 {
  return 200 'Preferential match';
}

location = /match {
  return 200 'Exact match';
}
/match     # => 'Exact match'
/match0    # => 'Preferential match'
/match1    # => 'Case insensitive regex match'
/MATCH1    # => 'Case sensitive regex match'
/match-abc # => 'Prefix match: matches everything that starting with /match'

try_files指令

該指令嘗試不同的路徑,并返回找到的任何路徑。

try_files $uri index.html =404;

因此,/foo.html將嘗試按以下順序返回文件:

$uri(/foo.html);

index.html

如果未找到:404

如果我們?cè)诜?wù)器上下文中定義try_files,然后定義查找所有請(qǐng)求的位置,則不會(huì)執(zhí)行try_files。發(fā)生這種情況是因?yàn)榉?wù)器上下文中的try_files定義了其偽位置,該偽位置是可能的最低特定位置。因此,定義location/ 會(huì)比我們的偽位置更具體。

server {  
try_files $uri /index.html =404;  
location/{ 
 }
}

因此,我們應(yīng)該避免在服務(wù)器上下文中使用try_files:

server {  
location/{   
 try_files $uri /index.html =404; 
 }
}

如里需要學(xué)習(xí)更多關(guān)于nginx的知識(shí)體系,也可以關(guān)注小編,持續(xù)更新。

分享到:
標(biāo)簽:Nginx
用戶無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定