Jonghyun Ho

Allowing 80 port on EC2 instance

Even if 80 port is configured to be open for Inbound, it’s not able to access from outside. It can be done by changing IP table with following command. Packets coming through 80 port are redirected to 8080 port. $ sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080 To check the updated IP table, $ sudo ipta...

Read more


Unreal Engine 4 Internals

Refer to Unreal Engine Architecture and Unreal Engine Document for further information. UE4 Class Diagram Unreal Engine Architecture Reference UE4 Class Diagram

Read more