Hi, I was testing nginx with dynamic modules from https://launchpad.net/~hda-me/+archive/ubuntu/nginx-stable but I could not get php7.1-fmp wordking. Nginx works, modules works but not php. I am not to knowledgeable is server management. I followed this tutorial except for nginx that I installed from ppa and mariadb instead of mysql: https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in-ubuntu-16-04 Something is missing but I don’t know what?
Thank you
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
@stephgiguere
Generally this section:
… would look something like:
The difference being we’re swapping
snippets/fastcgi-php.conf
withfastcgi_params
.Not all NGINX repositories have a
snippets
directory that contains blocks of code. Even if they do, not all of them contain everything that’s needed (at least, that has been my experience).…
If you don’t mind trying something different, and you have a few extra minutes, I wrote and installer for NGINX that handles a source installation hands-free.
It includes HTTP2, Brotli, a few modules, and multiple example configurations with it.
If you run:
Then:
Followed by:
And finally:
You’ll have a fully configured and optimized NGINX setup with a working PHP configuration that you can copy from the
./installers/nginx/examples
directory.Within this directory there’s a
php
directory which contains aphp.conf
file. That’s the one you need and to set it up, all you’d do is:Then:
… and configure it to your liking. There’s also examples on how to setup SSL, Load Balancing, Proxy, and others.
The installer will take about 20-30 minutes as this is a source compile, not a stock repo package. It’s detailed and sets up everything you’d have to do a source compile to setup. A
systemd
service is also included, so NGINX is controlled using:The only thing I’d recommend doing is:
1). Run the installer on a fresh Ubuntu 16.04 droplet, or; 2). Run:
This wipes your current NGINX installation, so if you need to backup anything, do it before the above commands. That said, the installer has all the examples you need to get things working and I will be more than happy to help should you have any questions.
As for the
examples
directory, most are setup so that you only need to change theserver_name
directive. The only other thing you may need to modify is thefastcgi_pass
directive since you’re using sockets instead of TCP, or you can modify:and change
listen
to use127.0.0.1:9000
and restartphp-fpm
and the example I provided will work without any changes other than those for your domain.@stephgiguere
If you installed NGINX and then used the auto-installer that I posted without removing the previous install, it’s most likely attempting to use the version that you installed from the OS repositories.
You should be able to run
apt-get remove nginx
to remove the repository version that was installed. That shouldn’t remove anything that the auto-installer created, though I’d still recommend backing up the/etc/nginx
directory.Something such as:
…and then:
That way if something doesn’t work, you can copy the files back in to place from the backup directory.
@jtittle From my google search I need to purge and reinstall nginx. Do you see any other options?