Skip to content

Instantly share code, notes, and snippets.

View chege-kimaru's full-sized avatar
🏠
Working from home

Kevin Kimaru chege-kimaru

🏠
Working from home
View GitHub Profile
.terminal {
position: relative;
width: 80%;
max-width: 600px;
border-radius: 6px;
padding-top: 45px;
margin-top: 8px;
overflow: hidden;
background-color: rgb(15, 15, 16);
}
@chege-kimaru
chege-kimaru / proxy.conf
Created July 4, 2020 12:09
Reverse Proxy in apache
#If ot backfires, do this first
#a2enmod proxy
#a2enmod proxy_http
#/etc/apache2/sites-available/abcd.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName mySite
ServerAlias www.abcd.com
DocumentRoot /var/www/html/abcd
@chege-kimaru
chege-kimaru / fileuploader.html
Created May 17, 2020 19:41
A sample code on how to upload a file without using form input
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>File Uploader</title>
<style>
.container {
width: 100%;
height: 100%;