Skip to content

Instantly share code, notes, and snippets.

@emiliodallatorre
Last active November 10, 2022 21:07
Show Gist options
  • Save emiliodallatorre/012a4fad7f1859eeaaaa2f02427ae46b to your computer and use it in GitHub Desktop.
Save emiliodallatorre/012a4fad7f1859eeaaaa2f02427ae46b to your computer and use it in GitHub Desktop.
Configurazione per Climax di HTTPD
# 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