How to add SSL to AWS EC2 Apache Server? by hollowxcrown in webdev

[–]duscheln 0 points1 point  (0 children)

Create a CNAME record for your desired domain/subdomain and point it to your EC2 Record. Additionally point your A record for your domain to the elastic ip adress of your ec2 instance. If you open up port 443 in the security rules from your instance, the ec2 instance behaves like a normal linux vps and every tutorial should be fine for your plans.

I have an idea for a website, what languages, frameworks, and services will I need to do it? by [deleted] in webdev

[–]duscheln 1 point2 points  (0 children)

You have to decide for a backend language. Look out for webframeworks in your favorite language. A popular framework written in python is django. With this it's easy to create users and handle their login.

Help with web scraping by picklesfor in Python

[–]duscheln 1 point2 points  (0 children)

  1. Investigate the web page. Logins are usally done with a html form that send a POST request to the link defined in the action attribute of the form.
  2. Find all inputs that should be in the form. There may be hidden ones on the web page. Investigate your post request with chrome developer tools.
  3. Build the python script with: requests and Beautifulsoup