Questions tagged as ['https']

Hypertext Transfer Protocol Secure
Score: 0
user8314628 avatar
How to access HTTP service by typing IP address in Firefox?
cn flag

enter image description here

enter image description here

My ip is 192.168.142.128. But I can't access it. I'm running Ubuntu in Virtualbox.

How can I fix this?

Score: 0
Wendell Best avatar
My web site still says it is unsecure
ru flag

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 ...
Score: 0
Pedroski avatar
Is certbot a good way to get https:// certificates?
es flag

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.

Score: 2
Can't connect to server over HTTPS in WSL
ru flag
Joe

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 ...

Score: 2
Harold Burbano avatar
Problems with git clone
in flag

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:  ...
Score: 0
oliveira47 avatar
Linux alternative to fiddler for windows auroresponder function
mx flag

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.

Score: 0
user487583 avatar
Is ubuntu cdimage site, which is http, secure?
bs flag

Ubuntu's cdimage site is http,

Is it safe to download from here?

(because it is not https, that is why I'm asking)

Score: 0
Denis Turgenev avatar
What infos should I change in getting cert for https?
cn flag

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 ...