1 # Deploying Nominatim using the PHP frontend
 
   4     The PHP frontend is deprecated and will be removed in Nominatim 5.0.
 
   6 The Nominatim API is implemented as a PHP application. The `website/` directory
 
   7 in the project directory contains the configured website. You can serve this
 
   8 in a production environment with any web server that is capable to run
 
  11 This section gives a quick overview on how to configure Apache and Nginx to
 
  12 serve Nominatim. It is not meant as a full system administration guide on how
 
  13 to run a web service. Please refer to the documentation of
 
  14 [Apache](https://httpd.apache.org/docs/current/) and
 
  15 [Nginx](https://nginx.org/en/docs/)
 
  16 for background information on configuring the services.
 
  19     Throughout this page, we assume your Nominatim project directory is
 
  20     located in `/srv/nominatim-project` and you have installed Nominatim
 
  21     using the default installation prefix `/usr/local`. If you have put it
 
  22     somewhere else, you need to adjust the commands and configuration
 
  25     We further assume that your web server runs as user `www-data`. Older
 
  26     versions of CentOS may still use the user name `apache`. You also need
 
  27     to adapt the instructions in this case.
 
  29 ## Making the website directory accessible
 
  31 You need to make sure that the `website` directory is accessible for the
 
  32 web server user. You can check that the permissions are correct by accessing
 
  33 on of the php files as the web server user:
 
  36 sudo -u www-data head -n 1 /srv/nominatim-project/website/search.php
 
  39 If this shows a permission error, then you need to adapt the permissions of
 
  40 each directory in the path so that it is executable for `www-data`.
 
  42 If you have SELinux enabled, further adjustments may be necessary to give the
 
  43 web server access. At a minimum the following SELinux labelling should be done
 
  47 sudo semanage fcontext -a -t httpd_sys_content_t "/usr/local/nominatim/lib/lib-php(/.*)?"
 
  48 sudo semanage fcontext -a -t httpd_sys_content_t "/srv/nominatim-project/website(/.*)?"
 
  49 sudo semanage fcontext -a -t lib_t "/srv/nominatim-project/module/nominatim.so"
 
  50 sudo restorecon -R -v /usr/local/lib/nominatim
 
  51 sudo restorecon -R -v /srv/nominatim-project
 
  54 ## Nominatim with Apache
 
  56 ### Installing the required packages
 
  58 With Apache you can use the PHP module to run Nominatim.
 
  60 Under Ubuntu/Debian install them with:
 
  63 sudo apt install apache2 libapache2-mod-php
 
  66 ### Configuring Apache
 
  68 Make sure your Apache configuration contains the required permissions for the
 
  69 directory and create an alias:
 
  72 <Directory "/srv/nominatim-project/website">
 
  73   Options FollowSymLinks MultiViews
 
  74   AddType text/html   .php
 
  75   DirectoryIndex search.php
 
  78 Alias /nominatim /srv/nominatim-project/website
 
  81 After making changes in the apache config you need to restart apache.
 
  82 The website should now be available on `http://localhost/nominatim`.
 
  84 ## Nominatim with Nginx
 
  86 ### Installing the required packages
 
  88 Nginx has no built-in PHP interpreter. You need to use php-fpm as a daemon for
 
  91 On Ubuntu/Debian install nginx and php-fpm with:
 
  94 sudo apt install nginx php-fpm
 
  97 ### Configure php-fpm and Nginx
 
  99 By default php-fpm listens on a network socket. If you want it to listen to a
 
 100 Unix socket instead, change the pool configuration
 
 101 (`/etc/php/<php version>/fpm/pool.d/www.conf`) as follows:
 
 104 ; Replace the tcp listener and add the unix socket
 
 105 listen = /var/run/php-fpm-nominatim.sock
 
 107 ; Ensure that the daemon runs as the correct user
 
 108 listen.owner = www-data
 
 109 listen.group = www-data
 
 113 Tell nginx that php files are special and to fastcgi_pass to the php-fpm
 
 114 unix socket by adding the location definition to the default configuration.
 
 117 root /srv/nominatim-project/website;
 
 120     try_files $uri $uri/ @php;
 
 124     fastcgi_param SCRIPT_FILENAME "$document_root$uri.php";
 
 125     fastcgi_param PATH_TRANSLATED "$document_root$uri.php";
 
 126     fastcgi_param QUERY_STRING    $args;
 
 127     fastcgi_pass unix:/var/run/php-fpm-nominatim.sock;
 
 128     fastcgi_index index.php;
 
 129     include fastcgi_params;
 
 132 location ~ [^/]\.php(/|$) {
 
 133     fastcgi_split_path_info ^(.+?\.php)(/.*)$;
 
 134     if (!-f $document_root$fastcgi_script_name) {
 
 137     fastcgi_pass unix:/var/run/php-fpm-nominatim.sock;
 
 138     fastcgi_index search.php;
 
 139     include fastcgi.conf;
 
 143 Restart the nginx and php-fpm services and the website should now be available
 
 144 at `http://localhost/`.
 
 146 ## Nominatim with other webservers
 
 148 Users have created instructions for other webservers:
 
 150 * [Caddy](https://github.com/osm-search/Nominatim/discussions/2580)