Name

SecurePostURL — specify URL for secure POST requests

SYNOPSIS

secure_URL

DESCRIPTION

The directive specifies a catalog URL for secure (HTTPS) POST form submissions.

This allows an automatically different path for GET and POST requests, presuming you use the [process] tag as form action= target.

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example: Setting SecurePostURL

Put the following lines in catalog.cfg:

VendURL        http://myhost.mydomain.local/
SecureURL      https://myhost.mydomain.local/
PostURL        http://myhost.mydomain.local/cgi-bin/standard
SecurePostURL  https://myhost.mydomain.local/cgi-bin/standard

NOTES

SecurePostURL value can also be a relative path, with or without the protocol and hostname specification.

AVAILABILITY

SecurePostURL is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 579

['SecurePostURL',    'url',              ''],

Source: lib/Vend/Config.pm
Line 4002 (context shows lines 4002-4006)

sub parse_url {
my($var, $value) = @_;
$value =~ s,/+$,,;
$value;
}

AUTHORS

Mike Heins

SEE ALSO

VendURL(7ic), PostURL(7ic), SecureURL(7ic)

DocBook! Interchange!