First things first !
sudo apt update
sudo apt upgrade
sudo apt-get install build-essential git
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
#!/usr/bin/env python | |
p_table_1 = [ | |
[57,49,41,33,25,17, 9], | |
[ 1,58,50,42,34,26,18], | |
[10, 2,59,51,43,35,27], | |
[19,11, 3,60,52,44,36], | |
[63,55,47,39,31,23,15], | |
[ 7,62,54,46,38,30,22], | |
[14, 6,61,53,45,37,29], |
#include <bits/stdc++.h> | |
#include <unistd.h> | |
using namespace std; | |
int USER = 1; | |
int COMPUTER = 0; | |
#define LEFT 0 | |
#define RIGHT 1 | |
#define UP 2 |
/etc/ufw/applications.d/plexmediaserver
[plexmediaserver]
title=Plex Media Server (Standard)
description=The Plex Media Server
ports=32400/tcp|3005/tcp|5353/udp|8324/tcp|32410:32414/udp
[plexmediaserver-dlna]
title=Plex Media Server (DLNA)
description=The Plex Media Server (additional DLNA capability only)