Last active
November 10, 2022 21:07
-
-
Save emiliodallatorre/012a4fad7f1859eeaaaa2f02427ae46b to your computer and use it in GitHub Desktop.
Configurazione per Climax di HTTPD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Server per il debug di Climax | |
LoadModule php_module /usr/local/lib/httpd/modules/libphp.so | |
<VirtualHost *:8080> | |
# TODO: Sostituire con il percorso alla cartella del progetto nel proprio computer | |
DocumentRoot /Users/emiliodallatorre/Documents/GitHub/climax-webapp-php | |
ErrorLog /Users/emiliodallatorre/Documents/GitHub/climax-webapp-php/error.log | |
CustomLog /Users/emiliodallatorre/Documents/GitHub/climax-webapp-php/access.log combined | |
Options Indexes FollowSymLinks Multiviews Indexes | |
<Directory /> | |
AllowOverride all | |
Require all granted | |
</Directory> | |
<FilesMatch \.php$> | |
SetHandler application/x-httpd-php | |
</FilesMatch> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment