HTTPS for URL Only to Protect Querystring Credentials

Joined
May 21, 2020
Messages
8
Reaction score
0
Location
Father-pompon4
Is there a way to only encrypt the URL using SSL without setting up STUNNEL? I have a static IP Address, domain name and SSL certificate.

I do not need to have the video encrypted but want to protect my credentials when passing in the URL:

https://www.domainname.com:pORT/mjpg/Front/Streaming/Channels/102?h=480&w=856&user=USERNAME&pw=PASSWORD
 
Joined
May 21, 2020
Messages
8
Reaction score
0
Location
Father-pompon4
For the pem file I combined, in this order

certificate private key

contents of crt file

contents of ca-bundle file

So, it should look like:

Code:
-----BEGIN PRIVATE KEY-----
CONTENTS
-----END PRIVATE KEY-----
-----BEGIN CERTIFICATE-----
CONTENTS
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
CONTENTS
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
CONTENTS
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
CONTENTS
-----END CERTIFICATE-----
 
Joined
May 21, 2020
Messages
8
Reaction score
0
Location
Father-pompon4
The Primary certificate is the main certificate (.crt) file.

The Intermediate certificate is the CA-bundle (.ca-bundle) file.

The Root certificate is included in the CA-bundle file.
 
Top