Skip to main content

All Questions

Tagged with
0 votes
1 answer
41 views

How do I set up HTTPS across my entire server?

I am running a few different websites on my server. a general webpage using Apache (port 80) Cockpit Web Console (port 9090) Home Assistant (port 8123) an open-source database system called Teable (...
LittleBit's user avatar
2 votes
0 answers
7k views

Error with SSL routines:: unsafe legacy renegotiation disabled

I have been trying to do a webscraping from this site. When I use the browser to acess, the website opens normal. But when I try to use R or Python, I have a few errors like: Error in open.connection(...
rtheodoro's user avatar
  • 121
0 votes
0 answers
106 views

Error in enable SSL in Apache

I want to enable SSL localhost in Ubuntu 18.04 and i went through the steps according to the this order but when i enter sudo service apache2 restart show me this error Error:Job for apache2.service ...
Fakhamatia's user avatar
0 votes
1 answer
58 views

Apache2 Web Server always serves HTTP even though I only have SSL set up

I am trying to host an SSL Apache2 web server on Ubuntu 16.04 on the domain mturk.bitasy.me but I have reason to believe the server is lying to me, somewhere at least. I have created two files in the ...
Brian's user avatar
  • 1
1 vote
2 answers
4k views

Self signed certificate not trusted

I have created my own CA: openssl genrsa -out private/rootCA.key 2048 openssl req -batch -new -x509 -nodes -key private/rootCA.key -sha256 -days 1024 -config ./openssl.conf -out certs/rootCA.pem I ...
blueFast's user avatar
  • 2,736
18 votes
1 answer
92k views

How can I get Chrome accepting self signed certificates?

I have a local REST-API service based on node/express and MongoDB. I am planning to switch over from http to https. The Clients are running on Windows Server 2012 R2 (Terminal-Server). The REST-API is ...
oldmayn's user avatar
  • 191
0 votes
1 answer
567 views

How to configure apache2 to serve my website with HTTPS?

I need to test my website in HTTPS, because some functionalities (i.e. geolocation) are accessible only with secured connection using Firefox. I was trying to follow this help, but I did not succeed ...
umbe1987's user avatar
  • 119
3 votes
1 answer
3k views

Can't connect to https on ubuntu - "Unknown SSL protocol error"

I can't seem to connect to a specific server over SSL from our Ubuntu servers. Locally, on my Mac, it works flawlessly. The server address: powerschool.spokaneschools.org curl -v https://...
Kuf's user avatar
  • 815
0 votes
1 answer
355 views

Accessing a particular directory via HTTPS

I am trying to create a particular directory on my LAMP installation folder to be HTTPS enabled. I was reading about that and i found out it can be done in httpd.conf. However i do not have https.conf ...
CodeMonkey's user avatar