summarylogtreecommitdiffstats
path: root/pmos.conf
diff options
context:
space:
mode:
authorRyan.Tolboom2017-06-19 20:15:55 -0400
committerRyan.Tolboom2017-06-19 20:15:55 -0400
commit760adc6f1161d3122675cd117be47cd9b6552834 (patch)
tree1a9f34c448d142101dfa1bef100aa206d7582ffd /pmos.conf
downloadaur-760adc6f1161d3122675cd117be47cd9b6552834.tar.gz
Initial submission
Diffstat (limited to 'pmos.conf')
-rw-r--r--pmos.conf24
1 files changed, 24 insertions, 0 deletions
diff --git a/pmos.conf b/pmos.conf
new file mode 100644
index 000000000000..4d5111ee8bc1
--- /dev/null
+++ b/pmos.conf
@@ -0,0 +1,24 @@
+#processmaker virtual host
+<VirtualHost your_ip_address >
+
+ ServerName "your_processmaker_domain"
+ DocumentRoot /opt/processmaker/workflow/public_html
+ DirectoryIndex index.html index.php
+
+ <Directory /opt/processmaker/workflow/public_html>
+ Options Indexes FollowSymLinks MultiViews
+ AddDefaultCharset UTF-8
+ AllowOverride All
+ Require all granted
+ ExpiresActive On
+
+ <IfModule mod_rewrite.c>
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
+ </IfModule>
+
+ #Deflate filter is optional. It reduces download size, but adds slightly more CPU processing:
+ AddOutputFilterByType DEFLATE text/html
+ </Directory>
+</VirtualHost>