X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/82dbcbb12a1285e7b345e232196b02b9cae35f9a..e6775e713c2a1c009f7a01fad674a545e0e6bb39:/vagrant/Install-on-Ubuntu-20.sh diff --git a/vagrant/Install-on-Ubuntu-20.sh b/vagrant/Install-on-Ubuntu-20.sh index 06b8b5b8..365f609f 100755 --- a/vagrant/Install-on-Ubuntu-20.sh +++ b/vagrant/Install-on-Ubuntu-20.sh @@ -24,11 +24,16 @@ export DEBIAN_FRONTEND=noninteractive #DOCS: sudo apt install -y build-essential cmake g++ libboost-dev libboost-system-dev \ libboost-filesystem-dev libexpat1-dev zlib1g-dev \ libbz2-dev libpq-dev libproj-dev \ - postgresql-server-dev-12 postgresql-12-postgis-3 \ + postgresql-12-postgis-3 \ postgresql-contrib-12 postgresql-12-postgis-3-scripts \ php php-pgsql php-intl libicu-dev python3-dotenv \ python3-psycopg2 python3-psutil python3-jinja2 \ - python3-icu python3-datrie git + python3-icu python3-datrie python3-yaml python3-pip git + +# Nominatim uses some typing features only available in later Python versions. +# Install the latest version of the backport package: + + pip3 install --user typing-extensions # # System Configuration @@ -222,7 +227,7 @@ server { listen 80 default_server; listen [::]:80 default_server; - root $USERHOME/nominatim/website; + root $USERHOME/nominatim-project/website; index search.php index.html; location / { try_files \$uri \$uri/ @php; @@ -258,7 +263,7 @@ EOF_NGINX_CONF # if [ "x$NOSYSTEMD" == "xyes" ]; then #DOCS: - sudo /usr/sbin/php-fpm7.3 --nodaemonize --fpm-config /etc/php/7.3/fpm/php-fpm.conf & #DOCS: + sudo /usr/sbin/php-fpm7.4 --nodaemonize --fpm-config /etc/php/7.4/fpm/php-fpm.conf & #DOCS: sudo /usr/sbin/nginx & #DOCS: else #DOCS: sudo systemctl restart php7.4-fpm nginx