I'm trying to install processmaker
on my local machine, i create /opt
directory and paste this php script into that, not i should defin virtual host on my ubuntu os, for doing this action i have this apache configuration into /etc/apache2/sites-available/
as pmos.conf named which i want to use 127.0.0.1:81
to opening /opt/processmaker/workflow/public_html
path
<VirtualHost *:81>
ServerAdmin admin@example.com
ServerName processmaker.dev
ServerAlias www.processmaker.dev
DocumentRoot /opt/processmaker/workflow/public_html
DirectoryIndex index.html index.php
<Directory "/opt/processmaker/workflow/public_html">
AddDefaultCharset UTF-8
AllowOverRide none
Options FollowSymlinks
Order allow,deny
Allow from all
RewriteEngine on
RewriteRule ^.*/(.*)$ sysGeneric.php [NC,L]
AddOutputFilterByType DEFLATE text/html
</Directory>
</VirtualHost>
and /etc/hosts
content is:
127.0.0.1 localhost
127.0.1.1 pishguy
127.0.0.1 processmaker.dev
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
after restarting apache
sudo systemctl reload apache2
i dont get any error on shell, but typing 127.0.0.1:81
i get this error on FireFox:
Unable to connect
Firefox can’t establish a connection to the server at 127.0.0.1:81.