NginX Proxy Manager Notes
Table of Contents
1. Install
1.1. Uninstall Apache
-
Apache might already be installed and tied to port 80.
We will need to uninstall it…-
First confirm that port 80 is already in use:
sudo ss -ltpn | cat | grep :80Example 1. Apache is using port 80sudo ss -ltpn | cat | grep :80
LISTEN 0 511 :80 *: users:"apache2",pid=9170,fd=4),("apache2",pid=9169,fd=4),("apache2",pid=9167,fd=4
-
Uninstall Apache
sudo apt-get remove --purge apache2 apache2-utils
-