You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
469 B
14 lines
469 B
4 years ago
|
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>
|