Skip to content

Instantly share code, notes, and snippets.

@dbinoj
dbinoj / proxy.apache.conf
Created June 23, 2020 16:08 — forked from chrisjhoughton/proxy.apache.conf
Sample Nginx reverse proxy to Apache set up for Wordpress.
<VirtualHost *:{PORT}>
ServerName www.yourdomain.com
ServerAdmin mail@domain.com
DocumentRoot /var/www/yourdir/
<Directory /var/www/yourdir>
Options Indexes FollowSymLinks
AllowOverride all
Order allow,deny
@dbinoj
dbinoj / python38.md
Last active April 4, 2024 08:33 — forked from basaks/python36.md
Install Python 3.8.5 interpreter on ubuntu 18.04

Install Python3.8 interpreter on ubuntu 18.04

From here, we can pretty much follow the exact same procedure.

On a terminal just do the following steps:

Install dependencies:

sudo apt install build-essential checkinstall libreadline-gplv2-dev \