Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Server Http and Https
#1
I started a project of a web server that accepts http and https requests for the python language. The idea is to no longer depend on wsgi and the virtual environment to run on the web. I can now communicate with the http protocol and I need help to make https work and have a better understanding of asynchronous issues. The project is called Orbit and if you want to help with the development the project is on Github, follow the link:

https://github.com/aguiarcc/orbit
Reply
#2
HTTPS is basically the same as HTTP but is run over an encrypted byte stream. once the SSL/TLS protocols establish the secure streams (both direction), what goes over that stream is HTTP. so you need to learn how to make a secure network connection, first. that should involve some authentication where the server's certificate is authenticated by the client. you need to decide if the client is to be authenticated over SSL/TLS (the client must have its own certificate, too) or over HTTP (client sends a userid and password) or is simply not authenticated (most HTTPS web sites do this) at all. you will learn about certificate authority and stuff like that.
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply
#3
i suspect this old post was SPAM. the link is broken but removing string "/aguiarcc" seems to get somewhere (in case anyone wants to track it down).
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Paramiko Server -- Exception (server): Error reading SSH protocol banner ujlain 3 4,516 Jul-24-2023, 06:52 AM
Last Post: Gribouillis
  HTTP Server JohnnyCoffee 1 2,791 Mar-22-2021, 01:50 AM
Last Post: Larz60+
  http server whit proxy jrcruz 0 2,538 Feb-13-2019, 10:02 AM
Last Post: jrcruz
  Add password to HTTP.server edgarfinchley 1 13,597 Aug-09-2018, 03:17 PM
Last Post: nilamo
  python -m http.server giving invalid syntax echowit 5 7,159 May-17-2018, 02:13 PM
Last Post: echowit
  newbie here - need help with building very basic http server BenSalem 0 2,378 Aug-14-2017, 08:06 AM
Last Post: BenSalem
  HTTPS connect with HTTPS proxy in between sagk 3 4,655 Jun-01-2017, 05:24 AM
Last Post: sagk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020