HTTPS for URL Only to Protect Querystring Credentials

May 21, 2020
8
0
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
 
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-----