<VirtualHost *:80>
ServerName tempora.local
DocumentRoot /var/www/Tempora/public
<Directory /var/www/Tempora/public>
DirectoryIndex /index.php
FallbackResource /index.php
</Directory>
</VirtualHost>server {
server_name tempora.local;
root /var/www/Tempora/public;
index /index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
<!-- System PHP configuration -->
}
}