PM-243 Change sample Apache VirtualHost definition file for ProcessMaker

This commit is contained in:
Julio Cesar Laura
2015-03-02 16:27:20 -04:00
parent 99f7b8811c
commit 5f5695a56d

21
pmos.conf.example Normal file
View File

@@ -0,0 +1,21 @@
<VirtualHost *:80>
ServerName 127.0.0.1
DocumentRoot /example/path/to/processmaker/workflow/public_html
DirectoryIndex index.html index.php
<Directory /example/path/to/processmaker/workflow/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
ExpiresActive On
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
</IfModule>
</Directory>
</VirtualHost>