initial commit

This commit is contained in:
Andrei Dragulescu
2018-11-06 11:45:13 +02:00
commit 546c010369
6 changed files with 127 additions and 0 deletions

14
nominatim.conf Normal file
View File

@ -0,0 +1,14 @@
Listen 8080
<VirtualHost *:8080>
DocumentRoot /app/src/build/website
ServerPath "/nominatim/"
CustomLog /var/log/apache2/access.log combined
ErrorLog /var/log/apache2/error.log
LogLevel debug
<Directory /app/src/build/website>
Options FollowSymLinks MultiViews
DirectoryIndex search.php
Require all granted
</Directory>
AddType text/html .php
</VirtualHost>