Answer the question
In order to leave comments, you need to log in
How to transfer project folder to dropbox in XAMPP (macOS Catalina)?
what do i do:
httpd.conf:
<IfModule unixd_module>
User username
Group daemon
</IfModule>
#Virtual hosts
Include etc/extra/httpd-vhosts.conf
#localhost
<VirtualHost *:80>
ServerName localhost
DocumentRoot "/opt/lampp/htdocs"
<Directory "/opt/lampp/htdocs">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Allow From All
Order Allow,Deny
</Directory>
</VirtualHost>
#My custom host
<VirtualHost *:80>
ServerName site.local
DocumentRoot "/Users/username/Dropbox/sites"
<Directory "/Users/username/Dropbox/sites">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
ErrorLog "logs/site.local-error_log"
</VirtualHost>
#XAMPP VirtualHost
127.0.0.1 site.local
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question