How to create a reverse proxy with Apache Httpd - EC2 AWS

preview_player
Показать описание
In this video I want to show you how to create a reverse proxy with Apache Httpd on a EC2 AWS instance.

A reverse proxy can for example be used to expose an internal ip to the web (from for example minikube).

#httpd #aws #ec2 #proxy

Scripts:
# Install httpd
yum update -y
sudo yum install -y httpd
sudo systemctl start httpd
sudo systemctl enable httpd

# The page to proxy to

# Write to httpd config
```
<VirtualHost *:80>
```
# Restart httpd
sudo systemctl restart httpd

In a follow up video, I will show how to use Apache Httpd to expose an application running on Minikube.

Twitter:
#kobbikobb
Рекомендации по теме