Skip to content

Instantly share code, notes, and snippets.

@minimedj
minimedj / uwgi-medium-post.ini
Created March 3, 2021 15:07 — forked from sumitsk20/uwgi-medium-post.ini
uwsgi configuration with most commonly sused options for highly scalable website (medium blog post)
[uwsgi]
# telling user to execute file
uid = bunny
# telling group to execute file
gid = webapps
# name of project you during "django-admin startproject <name>"
project_name = updateMe
@minimedj
minimedj / Guide.md
Created October 6, 2021 11:19 — forked from symdesign/Guide.md

Install LAMP

Configure PHP/MySQL for Froxlor

Change the MySQL root password

use mysql;
update user set authentication_string=PASSWORD("PASSWORD!") where User='root';
flush privileges;