Questions tagged [https]

HTTPS stands for HTTP Secure and is a combination of HTTP and SSL/TLS (Secure Sockets Layer/Transport Layer Security) and is used to provide an encrypted connection to a website.

HTTPS connections are often used for payment transactions and for sensitive transactions in corporate systems. They are increasingly being used for social networking sites like Facebook and Twitter to help prevent identity theft etc.

HTTPS on Wikipedia

2524 questions
0
votes
1 answer

Traefik doesn't pick TLS certificates secrets from the ingress definition in Kubernetes

I have raised this exact query at stackoverflow as well, as, interestingly, "Traefik" and "Kubernetes-Ingress" tags are absent on ServerFault, but present on StackoVerflow. When I only add the TLS secret to the Ingress, Traefik serves it's default…
Paddy
  • 455
  • 1
  • 5
  • 8
0
votes
1 answer

Haproxy Passthrough SSL and http logs?

I am running a proxy service, thus I can only use TCP passthrough, or users would get certificate warnings. Unfortunately very little is known in tcp logs, and I want to ensure no illegal activities are being done on the server. So the question is -…
0
votes
2 answers

NGINX: HTTP to HTTPS redirect not working

First time posting here. I've been searching on here for about two days to find a solution to my problem and nothing is working. I know, there is a ton of posts about this same problem but none of the threads solutions I have came across, have…
Kristoh
  • 3
  • 1
  • 2
0
votes
0 answers

Is it worth using Nginx as an SSL/TLS terminator in front of Varnish, rather than just Nginx itself as a cache?

First off, as I understand it, Varnish Cache is only a HTTP accelerator, and thus does not support client-side or server-side (backend) connections over HTTPS, despite the existence of this whitepaper. If this is not the case, and Varnish does, in…
Jivan Pal
  • 111
  • 8
0
votes
1 answer

HAProxy redirect SSL only for specific subsite

i have a problem with redirect http to https only for one subsite. Here is my config: acl is_root path -i /subsite/ redirect scheme https code 301 if !{ req.hdr(X-Forwarded-Proto) -i https } is_root when i delete is_root from redirect scheme…
Redbeard
  • 1
  • 2
0
votes
1 answer

Can't access site externally using HTTPS

Similar to this question: Widows server 2008, iis7. Unable to set up SSL for public use. Possible port issue I've recently set up a SSL certificate on a website. When I tried to access the site in my browser using HTTPS I get a timeout error, but…
0
votes
2 answers

How to certify a domain that's used only for redirections and has no hosting?

I migrated a site from oldsite.example to newsite.example. HTTPS was enforced all over, so most incoming links to oldsite are going to https://www.oldsite.example. My oldsite.example domain used to point to a host which had a certificate for it.…
Brachamul
  • 101
  • 1
0
votes
1 answer

http to https redirection - apache2

I have a odoo instance running in an ubuntu16 server. Apache is acting as the front end server and is proxypassing the request to the odoo instance. I have now configured the virtualhost to enable SSL on the frontend URL, which works for the URLs :…
Kishor N
  • 53
  • 1
  • 1
  • 5
0
votes
1 answer

Nginx - HSTS and Redirect non-www to www

I am checking the HSTS header here: https://hstspreload.org/ This is my non-www conf server { listen 443 server_name example.com; return 301 https://www.$server_name$request_uri; ##SSL add_header Strict-Transport-Security…
Arsh Dhillon
  • 3
  • 1
  • 2
0
votes
1 answer

how to disable HSTS in haproxy

I have a haproxy-ssl-terminated (haproxy 1.5.8 2014/10/31, debian jessie stock) test website, where the certificate expired. I'd like to be able to use the site while the new certificate arrives, but chrome and firefox tell me I have HSTS enabled. I…
P.Péter
  • 569
  • 2
  • 6
  • 24
0
votes
0 answers

Nginx HTTP/2 - Pingdom Test Not Working With SSL Enabled

So I have a site setup in Nginx that was done using the Forge Laravel service. Without SSL enabled, the site loads fine for myself and also loads fine using the Pingdom Site Test. If however I enable the SSL certificate, which is making use of…
Tenatious
  • 109
  • 1
  • 7
0
votes
1 answer

Cannot connect to Docker ONLYOFFICE via HTTPS on Ubuntu Server 18.04

We have an Ubuntu Server 18.04 LTS machine running a Nextcloud instance on Apache via a Vhost. This Nextcloud installation is located at /var/www/nextcloud and only allows connecting via HTTPS on port 443: connections via HTTP on port 80 get…
Manchineel
  • 139
  • 2
  • 11
0
votes
0 answers

HTTPS: Multiple virtual hosts, but only one external IP address

What is your recommendation regarding how to host multiple HTTPS web sites, with multiple virtual hostnames on a single external IP address? I need to support older web clients and I don't like the idea of using the same crypto key. My environment…
Jonas Bjork
  • 386
  • 1
  • 4
0
votes
2 answers

apache https port 80 redirects to wrong https site

When I listen to port 80 in /etc/apache2/sites-available/majichook.com.conf and do a permanent redirect to https://majichook.com for some reason it is forwarding to my https://99centbeats.com instead. Everything looks right in the file. I am very…
Jeff
  • 113
  • 5
0
votes
0 answers

Port Forwarding from Router / Public IP to server localhost:80

I have a 4G router connected to the NIC of a Ubuntu 18.04 server. I need to be able to use the public IP of the router to access the webpage hosted on the server. I have correctly configured port forwarding on the router (confirmed this by…
Barkles
  • 101
  • 1
1 2 3
99
100