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

Redirecting HTTPS

We built a site for a client to advertise a new block of apartments they had built. The apartments have now all been sold so we have been asked to forward the domain to another domain until there is a future use for it. We have tried to do this by…
Paul
  • 103
  • 1
  • 4
0
votes
0 answers

Nginx returns wrong SSL certificate

I have domains likes app.something.com app.uk.something.com There is no issue when I access https://app.uk.something.com/login or other urls with path behind, it returns the site with correct certificate issued for app.uk.something.com. However,…
Kelvin
  • 1
  • 2
0
votes
0 answers

browser times out over https on mobile network

When accessing oletymeshop.com from wifi, evrything works fine on http and https. When accessing over mobile network (4g / lte) http works, but https times out and nothing ever shows in the httpd access_log or error_log. Also effecting other sites…
0
votes
2 answers

Redirect from http://example.org to https://www.example.org directly or not?

Simply: Should I redirect http://example.org -> https://www.example.org http://example.org -> https://example.org -> https://www.example.org http://example.org -> http://www.example.org -> https://www.example.org Does it matter? Im' using HSTS.
Lenne
  • 987
  • 1
  • 13
  • 32
0
votes
0 answers

How to prevent 416 and 206 when creating mp4 files on the fly

I have a site that uses multiple servers - main, database, images, ffmpeg/video files. The main server uses wordpress that has a front end form which users use to create posts. They can choose a combination of options and upload pictures to create a…
730wavy
  • 101
  • 4
0
votes
1 answer

Wild card ssl on Apache CentOS 7

I have purchased WILDCARD ssl certificate from godaddy. I've used this certificate to couple of servers without generating csr. Now i have a question. Can i install this existing certificate to the Apache on CentOS 7 ? With self-signed certificate i…
Amir Damirov
  • 99
  • 1
  • 4
0
votes
1 answer

My website had many redirects loop after using nginx https

I recently added an ssl certificate to my site. It worked but sometime had error "too many redirects loop" in the browsers. I don't have much experience with servers and i setup it following an online guide. Thanks for anybody help me. Please help…
NHT
  • 1
0
votes
0 answers

Nginx SSL configuration for multiple domains on the same IP

I'm serving multiple domains from the same IP. I enabled SSL for one of them (ssobczak.net) and now I'm getting redirected instead of reaching it. I'm getting redirected to another one: beta.coralnotes.com (which is alphabetically first one of the…
ssobczak
  • 163
  • 6
0
votes
0 answers

Node.JS rest API is not accessible from outside when I added SSL to my Linux server

This is a testing application i'm doing. https://cfslpro.com/student_portal/ username : chanu password : 123456 Before adding HTTPS , this login and everything worked. But now nothing is working. I tried adding following solutions to my NodeJS…
0
votes
1 answer

WordPress with Nginx and Cloudflare

I'm not sure if this is an issue with changing the domain name on a WordPress site, or an issue with configuring SSL certs between Nginx and Cloudflare. I suspect it's a bit of both. I've setup two 2 different WordPress sites, one with Digital…
rm.rf.etc
  • 161
  • 5
0
votes
1 answer

.htaccess issue My domain is in subfolder and how do i redirect http to https

I recently shifted to https:// with SSL for Multi Domain I have a domain in subfolder say domain.com when I try to access example.com it goes fine to https://www.example.com However If I type example.com/blog it goes to…
0
votes
1 answer

How to setup a PHP API to work over HTTPS?

I use a simple API with PHP to get some values in JSON format, it is working fine in web browser over HTTP. I enabled SSL in mariadb with the certificates, but when I try my API using HTTPS, it says connection failed, instantly. Do I need to enable…
J. Doe
  • 3
  • 1
0
votes
1 answer

Apache https redirect only redirects port

Been banging my head on this one for a while, for some reason Apache refuses to properly implement https redirect. I have tried it using a permanent redirect as well as a mod rewrite and everything in between. Currently I only have one virtual hosts…
0
votes
1 answer

NGINX: Cannot config nginx to handle redirect from HTTP to HTTPS redirect not working

I have try to config nginx: /etc/nginx/nginx.conf server { listen 80 default_server; listen [::]:80 default_server; server_name 10.0.0.10; #This is my private IP return 301 https://$server_name$request_uri; # OR return 301…
Brian
  • 3
  • 2
0
votes
1 answer

Why do redirects from my subdomain end up on my primary domain?

I've got a custom subdomain that, when using Java's HttpServletResponse::sendRedirect() is getting redirected to our main (sub)domain and I'm not sure why. Users at https:// custom.example.com/originUrl/SignOnPage get redirected to https://…