# apt-get update
# apt-get install apache2 -y
# cd /etc/apache2/site-available
# vi [도메인주소].conf
ex) vi pental.system32.kr.conf
<VirtualHost *:80>
ProxyPreserveHost On
ProxyPass / http://localhost:[port]/
ProxyPassReverse / http://localhost:[port]/
ServerName [도메인주소]
</VirtualHost>
# a2enmod proxy
# a2enmod proxy_http
# a2ensite [도메인주소].conf
# service apache2 restart