Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To request additional company licenses simply log into the client area and click "Manage" next to the license you wish to purchase, then "Addons". Choose Addon Company, and complete the steps. Addon companies are immediately available to add within your Blesta installation after they have been paid for.

Creating a New Company

Note
titleAdditional companies require additional company licenses

You will only be able to add a new company if your license permits you. For example, if you're licensed for 5 companies you may only add up to 5.

To create an additional company, visit [Settings] > [System] > Companies. You will see a list of your existing companies. By default there will be 1 company that cannot be deleted, which is your initial, included company.

...

When finished, click "Create Company" to create the new company.

...

...

You will only be able to add a new company if your license permits you. For example, if you're licensed for 5 companies you may only add up to 5.

Configuring Company Hostnames

...

Here is an example of virtualhost's as configured for Apache in httpd.conf for 2 companies, account.domain1.com on IP address 192.168.0.11 and account.domain2.com on IP address 192.168.0.12. Note how both point to the same document root, where Blesta is installed.

Code Block
themeEmacs
titlehttpd.conf
<VirtualHost 192.168.0.11:80>
DocumentRoot /var/www/html
ServerName account.domain1.com
<Directory "/var/www/html">
allow from all
Options -Indexes
</Directory>
</VirtualHost>
<VirtualHost 192.168.0.12:80>
DocumentRoot /var/www/html
ServerName account.domain2.com
<Directory "/var/www/html">
allow from all
Options -Indexes
</Directory>
</VirtualHost>