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

nginx-1.15.9 Variable support in "ssl_certificate" and "ssl_certificate_key" directives

So nginx-1.15.9 was released very recently with the following change: Feature: variables support in the "ssl_certificate" and "ssl_certificate_key" directives. I setup an instance with multiple domains pointing to the following server…
shiok
  • 1
  • 1
0
votes
2 answers

Can not access https from my ubuntu EC2 instance

I just created a new "SSH key with a pass phrase" for github private repo access from my AWS EC2 instance. Now I clone my repos fine. But the issue started that I can not access any https. It is giving me connection refused. Even the sudo apt-get…
0
votes
1 answer

HTTPS over IPv6 only working inside my LAN (HTTP is fine)

I'm trying to expose a web server to the internet. Sockets are apparently ok: $ ss -tupan -6 state listening | grep node tcp 0 128 *:7443 *:* users:(("node-default",pid=28327,fd=26)) tcp …
0
votes
0 answers

.htaccess https to http xampp not working

For some reasons i am trying to Redirect all traffic coming to port 443 to port 80 i.e from https to http and kindly this is not duplicate because i searched a lot but did not found any working solution. I created the following .htaccess file in…
0
votes
1 answer

unexpected end of file

I am trying to get revese proxy working. I followed below https://github.com/nthnnl/odoo-nginx-reverse-proxy I am getting ginx: [emerg] unexpected end of file, expecting ";" or "}" in /etc/nginx/sites-enabled/mysite.com.conf:52 Here is the…
user2379186
  • 101
  • 1
  • 1
0
votes
1 answer

Reverse NGINX proxy in front of two Docker containers is not working

I have this configuration: upstream frontend_upstream { # FrontEnd part based on `frontend` container with React app. server frontend:3000; } server { ... listen 80; server_name stage.example.com; server_tokens off; …
0
votes
0 answers

Ingress NGINX client closed connection while SSL handshaking

We have ingress-nginx running for a while and about 10% of requests ending up with some SSL handshake problem. Here is an example of a failing connection: 2019/02/14 10:15:35 [debug] 237#237: *4612 accept: **.**.**.**:40928 fd:53 2019/02/14 10:15:35…
0
votes
1 answer

Forward messages encrypted

I have an rsyslog server at front and need to forward certain facilities to a remote server. I created a template for transport as HTTP body: template(name="syslogforward" type="list") { constant(value="POST / HTTP/1.0\n") …
Marc0
  • 1
  • 2
0
votes
0 answers

Tomcat Configuration with openssl Failed

I am trying to configure Tomcat with openssl (ssl ). I have generated Keystore by name serverde**.jks My config With server.xml Is:
selvakumar
  • 99
  • 2
0
votes
1 answer

can't bring https protocol to running

I have a wordpress website, hosted on Windows Server 2012. http is working, but https is not! I got a SSL certificate from the provider (via digicert), and installed in into the Certificate Store in "Personal" In IIS, on the website, I chose "Edit…
askolotl
  • 103
  • 3
0
votes
1 answer

apt-cacher-ng: 406 Not Acceptable response with HTTPS

I try to set up apt-cacher-ng to cache all apt packages for the local network. But with the graylog repository I have some trouble. System: Debian 9 with apt 1.4.0 and apt-cacher-ng 2-2 On a server I just configured apt to use the apt-cacher server…
soeren
  • 1
  • 2
0
votes
1 answer

TLS communication: client did not receive "server key exchange" message but server got the ack

Recently, we have found that our web page occassinally could not be opened. Then we have captured the data packets on both client side and server side and found a very strange phenomenon. In a TLS communication process, client side sent "client…
yifan
  • 163
  • 1
  • 1
  • 11
0
votes
1 answer

Are my NGINX server blocks set up improperly (HTTPS 301's and assets not being cached in browsers)?

I inherited a server and there are a couple of issues that I have diagnosed and that certain page speed performance tests are flagging. 1) In the server block certain requests are being redirected to https://25parkrow.com. For example, if you just…
0
votes
1 answer

Getting started with HTTPS in Amazon Web Services

I've just been introduced, only hours ago, to Amazon's AWS, and ECS, and Elastic Beanstalk, with our (still experimental) application ported over from Google Cloud, and up and running in a load-balanced cluster. But without HTTPS. I've been setting…
hbquikcomjamesl
  • 259
  • 2
  • 16
0
votes
1 answer

Is there any security issue when I set `apache` as the only owner of websites files and folders?

My server is centos 7,with php 5.4,apache 2.4. My website locate in /var/www. As for apache is the only one user read or write in /var/www,I set all files and folders owner and group to apache: For the folders and files read only:-r------- 1 …
kittygirl
  • 945
  • 5
  • 13
  • 33