Questions tagged as ['https']
I am running Ubuntu 20.04 server I am using Apache2 I used letsencrypt with certbot to get my certificate which was successful my web page is bestwebpage.ddns.net I get my domain name through NOIP which is configured to deal with my ISP blocking port 80 I modified my bestwebpage.ddns.net.conf as follows:
<VirtualHost *:80>
ServerAdmin wendellkbest@gmail.com
ServerName bestwebp ...
I am setting up a cloud server using Ubuntu 20.04 Server.
I will never have many visitors, just my students doing homework.
I want to enable https:// access.
I found this page.
Is certbot a good way to go??
I have never done this before.

I'm trying to use a command line tool for a scheduler we have installed at my company, and decided to install it in my WSL ubuntu installation. However, I can't seem to connect to the server...
curl "[server]" --verbose
* Trying [server:443]...
*TCP_NODELAY set
*connect to [server] port 443 failed: Connection timed out
I would assume something is up with either the server's firewall or my Windows f ...
I have a problem cloning a repo when I use http:
git clone https://github.com/burbanox/responsive-design.git
throw me an error :
fatal: unable to access 'https://github.com/burbanox/responsive-design.git/': gnutls_handshake() failed: Error in the pull function.
so when I use ssh:
git clone git@github.com:burbanox/responsive-design.git
stays loading forever :
Cloning into 'responsive-design'...
remote: ...
I got debugg an website with its assets in production easily, but i don`t seem to find any good alternative to it on ubuntu.
the only feature i am looking for is: I need something that decript the http request of a javascript file, and replace with the local file a javascript. In order for me to test changes in code without having to put into production.
Ubuntu's cdimage site is http,
Is it safe to download from here?
(because it is not https, that is why I'm asking)
I am going to get cert to enable https in ubuntu nginx server using following command.
sudo openssl req -x509 -nodes -newkey rsa:2048
-config /etc/ssl/openssl.cnf -extensions subject_alt_name
-keyout private.key -out self_signed.pem -subj '/C=NG/ST=Lagos/L=Victoria_Island/
O=Your_Organization/OU=Your_department/
CN=www.yourdomain.com/emailAddress=youremail@yourdomain.com' -days 365
Your_doma ...