VPay
4.4.0
master
ブランチ バージョンは 4.0 シリーズを完全に再構築したバージョンで、支付宝当面付
のみをサポートします。dev
ブランチのバージョンは 3.0 シリーズの安定バージョンで、支付宝当面付
のみをサポートします。Vpay – 個人開発者がオンライン取引を安全かつ効率的に処理できるようにする個人支払いソリューションです。
次の 2 つのオプションのいずれかを選択します
/public
として構成します if ($uri ~* "^(.*).php$") {
rewrite ^(.*) /cleanphp/bootstrap.php last;
}
location @cleanphp {
rewrite ^ /cleanphp/bootstrap.php last;
}
location ~* ^/@static(.*)$ {
if_modified_since before;
expires 30d;
access_log off;
add_header Cache-Control "public";
try_files /app/public$1 /app/public/$1 /app/public$1/index.html /app/public/index.html =404 last;
}
location ~* ^/@(.*)$ {
if_modified_since before;
expires 30d;
access_log off;
add_header Cache-Control "public";
try_files /app/public$1 /app/public/$1 /app/public$1/index.html /app/public/$1/index.html /app/public/index.html last;
}
location / {
if_modified_since before;
expires 30d;
access_log off;
add_header Cache-Control "public";
try_files /app/public/$uri @cleanphp;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
error_log /dev/null;
access_log /dev/null;
}
location ~ .*.(js|css)?$
{
expires 12h;
error_log /dev/null;
access_log /dev/null;
}
アクセスについては vpay-sdk を参照してください
ドキュメントを読む
GPL V3