Pixiv-Nginx/conf/PayPal.conf

30 lines
619 B
Plaintext
Raw Normal View History

# PayPal Start
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name checkout.paypal.com;
include cert.conf;
location / {
set $checkout_paypal d37t8d3i48djc7.cloudfront.net;
proxy_pass https://$checkout_paypal:443/;
2024-09-05 10:44:21 +08:00
include Proxy.conf;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name c.paypal.com;
include cert.conf;
location / {
set $c_paypal c-fastly.glb.paypal.com;
proxy_pass https://$c_paypal:443/;
2024-09-05 10:44:21 +08:00
include Proxy.conf;
}
}
# PayPal End