Ok I know this has to be simple yet I have not figured it out yet. I wanna rewrite to and to I hate for people to see in their browser address bar when they visit the site. Any help would be greatly appreciated.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ProxyPass / [URL unfurl="true"]http://www.site.com:8000/[/URL]
ProxyPassReverse / [URL unfurl="true"]http://www.site.com:8000/[/URL]
NameVirtualHost YOUR_IP_ADDRESS
<VirtualHost YOUR_IP_ADDRESS:80>
ServerName [URL unfurl="true"]www.domain.com[/URL]
ServerAlias domain.com
.. bla bla bla....
</VirtualHost>
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at <URL:[URL unfurl="true"]http://www.apache.org/docs/vhosts/>[/URL]
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
#NameVirtualHost *
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *>
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /[URL unfurl="true"]www/docs/dummy-host.example.com[/URL]
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
#<VirtualHost _default_:*>
#</VirtualHost>