Find Which Proxy Server is running
Nginx Tutorial
How to Check If You’re Running Nginx or Apache
To check if your server is running Nginx or Apache, you can follow these steps:
Apache:
sudo systemctl status apache2
Nginx:
sudo service nginx status
Check Process List Apache
ps aux | grep apache2
Check Process List Nginx
ps aux | grep nginx