sudo yum install epel-release
sudo yum update
sudo yum install certbot
sudo yum install nginx
sudo systemctl start nginx
MYSQL_USER="root" | |
MYSQL_PASSWORD="" | |
MYSQL_DBNAME="gorm_test" | |
MYSQL_PROTOCOL="tcp" | |
MYSQL_HOST="127.0.0.1" | |
MYSQL_PORT="3306" |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# method_chaining.py | |
# Jim Bagrow | |
# Last Modified: 2016-12-05 | |
""" | |
Method chaining (or cascading) is a technique for making many calls to an | |
object with less code. Each method should return a reference to the object |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
#!/usr/bin/env python | |
''' | |
MySQL CRUD (Create Retrieve Update Delete) Operations using Python | |
''' | |
__author__ = "Alessandro Cucci" | |
__license__ = "MIT" | |
__version__ = "0.0.1" | |
__email__ = "[email protected]" | |
__status__ = "Development" |