Greetings all.
I recently installed a program called Booktype and I would like the ability for other people to connect through my IP address and be able to use the program. I have done this before, but don't remember how. The Apache.conf file is where I think I should be working, if I'm wrong, please let me know
# Apache configuration for Booktype server V1.0.1

<VirtualHost *:80>

# CHANGE THIS
ServerName booktype
SetEnv HTTP_HOST "booktype"

SetEnv LC_TIME "en_GB.UTF-8"
SetEnv LANG "en_GB.UTF-8"

WSGIScriptAlias / /var/www/mybooktype/booki.wsgi

<Location "/">
Allow from all
Options FollowSymLinks
</Location>

Alias /static/ "/var/www/mybooktype/static/"
<Directory "/var/www/mybooktype/static/">
Order allow,deny
Options Indexes
Allow from all
IndexOptions FancyIndexing
</Directory>

Alias /site_static/ "/usr/local/src/Booktype/lib/booki/site_static/"
<Directory "/usr/local/src/Booktype/lib/booki/site_static/">
Order allow,deny
Options Indexes
Options FollowSymLinks
Allow from all
IndexOptions FancyIndexing
</Directory>

Alias /media/ "/usr/lib/python2.7/dist-packages/django/contrib/admin/media/"
<Directory "/usr/lib/python2.7/dist-packages/django/contrib/admin/media">
Order allow,deny
Options Indexes
Options FollowSymLinks
Allow from all
IndexOptions FancyIndexing
</Directory>

ErrorLog /var/log/apache2/booktype-error.log
LogLevel warn
CustomLog /var/log/apache2/booktype-access.log combined
</VirtualHost>
to reiterate, right now I connect to http://booktype to use the software, and would like to allow people to connect to it through my IP