F5F Stay Refreshed Power Users Networks Convert HTTPS traffic to HTTP securely.

Convert HTTPS traffic to HTTP securely.

Convert HTTPS traffic to HTTP securely.

Pages (3): 1 2 3 Next
X
XxKripxDeMoNxX
Senior Member
536
07-27-2023, 01:52 PM
#1
Yes, you can use tools like ProxyChanger or configure your system to route HTTPS through an HTTP proxy for testing purposes.
X
XxKripxDeMoNxX
07-27-2023, 01:52 PM #1

Yes, you can use tools like ProxyChanger or configure your system to route HTTPS through an HTTP proxy for testing purposes.

T
Tanhu
Member
212
07-29-2023, 05:37 PM
#2
It's also referred to as an HTTPS terminator. We employ Nginx for this purpose. The system handles HTTPS traffic and forwards it to our server application, which operates on port 8080.
T
Tanhu
07-29-2023, 05:37 PM #2

It's also referred to as an HTTPS terminator. We employ Nginx for this purpose. The system handles HTTPS traffic and forwards it to our server application, which operates on port 8080.

H
162
07-29-2023, 07:03 PM
#3
I noticed it but wasn't clear which setting to apply.
H
Hightops123432
07-29-2023, 07:03 PM #3

I noticed it but wasn't clear which setting to apply.

K
kittysnickers
Junior Member
17
07-29-2023, 07:30 PM
#4
Server setup details outline. App uses two ports: 80 for HTTP and 443 for HTTPS. Traffic from any IP is handled via Nginx, redirecting to secure connections. Logs are stored in specified files. Security measures include SSL enforcement, certificate management, and strict connection rules.
K
kittysnickers
07-29-2023, 07:30 PM #4

Server setup details outline. App uses two ports: 80 for HTTP and 443 for HTTPS. Traffic from any IP is handled via Nginx, redirecting to secure connections. Logs are stored in specified files. Security measures include SSL enforcement, certificate management, and strict connection rules.

M
Marian1703
Member
64
07-29-2023, 09:24 PM
#5
The process requires the certificate private key for decryption. It doesn’t appear to be needed for re-encryption, and there’s no option to disable it unless you’re using a specific configuration.
M
Marian1703
07-29-2023, 09:24 PM #5

The process requires the certificate private key for decryption. It doesn’t appear to be needed for re-encryption, and there’s no option to disable it unless you’re using a specific configuration.

M
MECrageman
Member
180
07-30-2023, 12:32 AM
#6
It’s the SSL certificate required for HTTPS, ensuring browsers recognize it as trustworthy. No encryption or re-encryption occurs between the proxy and our app. Nginx ends the encrypted SSL session. The sample uses a Let's Encrypt certificate, freely available.
M
MECrageman
07-30-2023, 12:32 AM #6

It’s the SSL certificate required for HTTPS, ensuring browsers recognize it as trustworthy. No encryption or re-encryption occurs between the proxy and our app. Nginx ends the encrypted SSL session. The sample uses a Let's Encrypt certificate, freely available.

I
ICroniX
Member
70
08-06-2023, 07:55 PM
#7
Change all requests to use HTTP protocol instead of HTTPS. This will display the site with plain text and without encryption.
I
ICroniX
08-06-2023, 07:55 PM #7

Change all requests to use HTTP protocol instead of HTTPS. This will display the site with plain text and without encryption.

M
MrTanasis
Junior Member
12
08-06-2023, 11:42 PM
#8
This setup ensures secure connections for users by routing traffic through HTTPS. If you need a straightforward redirect, check the HTTP settings—it handles the transition between protocols. The goal is to maintain a valid HTTPS link that ends at your web server, while the backend server forwards the unencrypted data internally without needing to handle encryption details.
M
MrTanasis
08-06-2023, 11:42 PM #8

This setup ensures secure connections for users by routing traffic through HTTPS. If you need a straightforward redirect, check the HTTP settings—it handles the transition between protocols. The goal is to maintain a valid HTTPS link that ends at your web server, while the backend server forwards the unencrypted data internally without needing to handle encryption details.

R
ruralMCgaming
Member
153
08-08-2023, 05:08 AM
#9
This would be a straightforward redirection. Using http://www.go ogle.com will keep redirecting due to HSTS, and many websites require HTTPS. You're likely seeking a proxy that changes HTTPS connections to HTTP.
R
ruralMCgaming
08-08-2023, 05:08 AM #9

This would be a straightforward redirection. Using http://www.go ogle.com will keep redirecting due to HSTS, and many websites require HTTPS. You're likely seeking a proxy that changes HTTPS connections to HTTP.

K
Krazykitten
Junior Member
31
08-08-2023, 09:02 PM
#10
This setup ensures incoming connections use HTTPS, decrypts the traffic, and sends it to port 8080 on the local machine. The browser communicates securely with the web server via nginx, which encrypts the link. The traffic between nginx and the application on port 8080 remains unencrypted, meaning it's being proxied. A valid certificate is required for this process.
K
Krazykitten
08-08-2023, 09:02 PM #10

This setup ensures incoming connections use HTTPS, decrypts the traffic, and sends it to port 8080 on the local machine. The browser communicates securely with the web server via nginx, which encrypts the link. The traffic between nginx and the application on port 8080 remains unencrypted, meaning it's being proxied. A valid certificate is required for this process.

Pages (3): 1 2 3 Next