Skip to content

Installing on Debian

Arjit Chaudhary edited this page Feb 15, 2016 · 5 revisions

Create a new folder under /opt,

mkdir /opt/dcimstack

Clone the git repo,

cd /opt
git clone https://github.com/arjitc/DCIMStack.git dcimstack

Set permissions,

cd /opt
chown -R www-data:www-data dcimstack

Create a new vHost or update your existing vHost at

/etc/apache2/sites-enabled

in our case,

nano domain.com.conf

and paste the following into it,

<VirtualHost *:80>
  DocumentRoot /opt/dcimstack/
  ServerName  domain.com
  AllowEncodedSlashes On
  <Directory "/opt/dcimstack/">
    Require all granted
    AllowOverride All
    Options FollowSymLinks MultiViews
  </Directory>
</VirtualHost> 

Clone this wiki locally