利用 Nginx accesskey 和 secure_link 防盗链

使用版本:

Nginx-1.2.7

Nginx-accesskey-2.0.3

参考:

http://wiki.nginx.org/HttpAccessKeyModuleChs

http://wiki.nginx.org/HttpSecureLinkModule

根据 Nginx Wiki 上的修改config,增加编译参数(--with-http_secure_link_module --add-module=path/to/nginx-accesskey)并编译 Nginx

./configure --user=www --group=www --prefix=/home/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_secure_link_module --add-module=/home/software/nginx-accesskey-2.0.3


服务器配置:

利用 Nginx accesskey 和 secure_link 防盗链_第1张图片

写一个测试的php页面跳转到真实的图片地址:

利用 Nginx accesskey 和 secure_link 防盗链_第2张图片


为了让真实地址体现出帅酷炫和专业,特地做了rewrite,(偷懒期间我都(.*)了,哈哈)  当然为了更酷更帅更炫,可以再优化,包括算法加密之类的

测试地址:

http://114.215.182.8/test.php


原文地址:http://blog.xu01.net/index.php/archives/29/


你可能感兴趣的:(nginx,防盗链)