Hi, I want my webhook to run on port 80/443 (https), not on a random port like 9000 etc.
i have tried it but return permission denied
any idea How to achieve this?
Thanks In Advance...
Ports 1-1023 are by default privileged ports. To bind to a privileged port, a process must be running with root permissions. Ports that are greater than 1023 are by default non-privileged.
Hi @adnanh thank you for the suggestion.
I found a method by using the Apache Reverse Proxy.
However, in Configuration at /etc/apache2/mods-available/proxy.conf it said:
If you want to use apache2 as a forward proxy, uncomment the
# 'ProxyRequests On' line and theblock below.
# WARNING: Be careful to restrict access inside theblock.
# Open proxy servers are dangerous both to your network and to the
# Internet at large.
My Question, In What Condition, make it be dangerous when we're using Reverse Proxy?
Are we safe to use below config (Allow from all)?
ProxyRequests On
<Proxy *>
Order Deny,Allow
Deny from all
Allow from all
</Proxy>
Most helpful comment
Ports 1-1023 are by default privileged ports. To bind to a privileged port, a process must be running with root permissions. Ports that are greater than 1023 are by default non-privileged.