https://github.com/wdbm/sslurl
URL HTTP to HTTPS redirection website
https://github.com/wdbm/sslurl
flask gunicorn
Last synced: 2 months ago
JSON representation
URL HTTP to HTTPS redirection website
- Host: GitHub
- URL: https://github.com/wdbm/sslurl
- Owner: wdbm
- License: gpl-3.0
- Created: 2018-08-15T17:11:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-15T17:14:47.000Z (almost 8 years ago)
- Last Synced: 2025-09-20T09:33:56.382Z (10 months ago)
- Topics: flask, gunicorn
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sslurl
sslurl is a URL HTTP to HTTPS redirection website. If it receives a request for a URL starting with "http://", it redirects to the URL with "http://" changed to "https://".
# setup
```Bash
pip install sslurl
```
# Flask
```Bash
while true; do
sslurl
done
```
# Gunicorn
```Bash
gunicorn --workers=2 "sslurl.__init__:WSGI()" --bind=0.0.0.0:80
```