一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

參照nginx官方樣本重新配置Wordpress站點(diǎn)

 louis2010 2019-03-10

nginx官網(wǎng)提供了常用blog/cms等系統(tǒng)的示例配置文件。Wordpress的在這里。

基礎(chǔ)的是這樣:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
server {
        ## Your website name goes here.
        server_name domain.tld;
        ## Your only path reference.
        root /var/www/wordpress;
        ## This should be in your http block and if it is, it's not needed here.
        index index.php;
        location = /favicon.ico {
                log_not_found off;
                access_log off;
        }
        location = /robots.txt {
                allow all;
                log_not_found off;
                access_log off;
        }
        location / {
                # This is cool because no php is touched for static content.
                # include the '?$args' part so non-default permalinks doesn't break when using query string
                try_files $uri $uri/ /index.php?$args;
        }
        location ~ \.php$ {
                #NOTE: You should have 'cgi.fix_pathinfo = 0;' in php.ini
                include fastcgi.conf;
                fastcgi_intercept_errors on;
                fastcgi_pass php;
        }
        location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
                expires max;
                log_not_found off;
        }
}

后面還有一些多站共存之類的配置。

按照這個(gè)范本我對(duì)我自己的配置做了一些調(diào)整,試了一下完全可行,比原來(lái)的好用。看來(lái)之前對(duì)nginx的配置還是不夠了解。

我自己的配置大致是這樣:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#禁止空主機(jī)頭訪問(wèn)
server {
    listen       80 default_server;
    server_name _;
    return 500;
}
server {
    listen       80;
    server_name  youdomain.com www.yourdomain.com;
    #下面這條規(guī)定站點(diǎn)根目錄,再往下的配置就以此為根
    root /usr/share/nginx/siterootpath;
    index index.php;
    #charset koi8-r;
    #下面這句是訪問(wèn)log,按需開(kāi)關(guān)
    #access_log  /var/log/nginx/log/host.access.log  main;
    #favicon,站點(diǎn)的圖標(biāo),可以顯示在瀏覽器標(biāo)題欄上,和robots.txt兩個(gè)都不需要log
    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }
    location =/robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }
    # 所有靜態(tài)文件都直通,解決了之前jpg等文件單獨(dú)設(shè)置直通的問(wèn)題,另外還可以直接支持固定鏈接
    location / {
        try_files $uri $uri/ /index.php?$args;
    }
    
    #自定義404
    #error_page  404              /404.html;
    #自定義錯(cuò)誤頁(yè)
    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
    #對(duì)上傳目錄禁止執(zhí)行php,并阻止除圖片以外的任何文件類型
    location /wp-content/uploads/ {
        if ($request_filename !~* \.(jpg|jpeg|gif|png)$) {
             return 403;
        }
        location ~ .*\.(php)?$ {
           deny all;
        }
    }
    # php文件發(fā)送到php5-fpm,現(xiàn)在這一段不需要寫root目錄了
    #
    location ~ \.php$ {
        #檢查php文件是否真實(shí)存在,防止偽裝成jpg的php等
        if (!-f $document_root$fastcgi_script_name) {
            return 404;
        }
        fastcgi_pass   unix:/var/run/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$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;
    }
    #js css 圖片等文件最大化有效期,不記錄訪問(wèn)
    location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
        expires max;
        log_not_found off;
    }
}

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多

    国产专区亚洲专区久久| 久久一区内射污污内射亚洲| 日韩黄片大全免费在线看| 日本和亚洲的香蕉视频| 国产精品刮毛视频不卡| 亚洲三级视频在线观看免费| 一区二区三区国产日韩| 中国美女偷拍福利视频| 中文字幕在线区中文色 | 麻豆看片麻豆免费视频| 国产精品一区二区日韩新区| 在线观看那种视频你懂的| 国产精品欧美一区二区三区不卡 | 99久久国产精品免费| 国产精品香蕉一级免费| 欧美乱妇日本乱码特黄大片| 亚洲国产一区精品一区二区三区色| 欧美日韩国产免费看黄片| 亚洲国产另类久久精品| 国产极品粉嫩尤物一区二区| 性感少妇无套内射在线视频| 一区二区三区日韩经典| 亚洲中文在线中文字幕91| 老熟妇乱视频一区二区| 91精品欧美综合在ⅹ| 日本高清一区免费不卡| 果冻传媒精选麻豆白晶晶 | 国产亚洲不卡一区二区| 国产福利一区二区三区四区| 91久久精品国产成人| 欧美性猛交内射老熟妇| 亚洲伦片免费偷拍一区| 久久老熟女一区二区三区福利| 黄色国产一区二区三区| 熟女少妇久久一区二区三区| 人妻久久这里只有精品| 国产精品久久久久久久久久久痴汉| 国产精品午夜小视频观看| 91蜜臀精品一区二区三区| 在线亚洲成人中文字幕高清| 欧美午夜色视频国产精品|