X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/3aa6e6a365dbe8eef3012c4ab47357ffec3ea5b2..8dbfdd59b0a209d3785a0e07004d8ca8e80e45d4:/vagrant/Install-on-Ubuntu-18.sh diff --git a/vagrant/Install-on-Ubuntu-18.sh b/vagrant/Install-on-Ubuntu-18.sh index 52f01715..9fda122e 100755 --- a/vagrant/Install-on-Ubuntu-18.sh +++ b/vagrant/Install-on-Ubuntu-18.sh @@ -29,9 +29,14 @@ export DEBIAN_FRONTEND=noninteractive #DOCS: libbz2-dev libpq-dev libproj-dev \ postgresql-server-dev-10 postgresql-10-postgis-2.4 \ postgresql-contrib-10 postgresql-10-postgis-scripts \ - php php-pgsql php-intl \ - python3-psycopg2 git + php php-pgsql php-intl libicu-dev python3-pip \ + python3-psycopg2 python3-psutil python3-jinja2 python3-icu git \ + python3-argparse-manpage +# The python-dotenv package that comes with Ubuntu 18.04 is too old, so +# install the latest version from pip: + + pip3 install python-dotenv # # System Configuration @@ -113,11 +118,11 @@ fi #DOCS: # The code must be built in a separate directory. Create this directory, # then configure and build Nominatim in there: - cd $USERHOME - mkdir build - cd build + mkdir $USERHOME/build + cd $USERHOME/build cmake $USERHOME/Nominatim make + sudo make install # Nominatim is now ready to use. You can continue with @@ -127,6 +132,14 @@ fi #DOCS: # Setting up a webserver # ====================== # +# The webserver should serve the php scripts from the website directory of your +# [project directory](../admin/import.md#creating-the-project-directory). +# Therefore set up a project directory and populate the website directory: + + mkdir $USERHOME/nominatim-project + cd $USERHOME/nominatim-project + nominatim refresh --website +# # Option 1: Using Apache # ---------------------- # @@ -142,14 +155,14 @@ if [ "x$2" == "xinstall-apache" ]; then #DOCS: #DOCS:```sh sudo tee /etc/apache2/conf-available/nominatim.conf << EOFAPACHECONF - + Options FollowSymLinks MultiViews AddType text/html .php DirectoryIndex search.php Require all granted -Alias /nominatim $USERHOME/build/website +Alias /nominatim $USERHOME/nominatim-project/website EOFAPACHECONF #DOCS:``` @@ -160,16 +173,6 @@ EOFAPACHECONF sudo a2enconf nominatim sudo systemctl restart apache2 -# You need to create a minimal configuration file that tells nominatim -# where it is located on the webserver: - -#DOCS:```sh -tee settings/local.php << EOF -