For recommended versions of NGINX, see online eZ requirements.
- Some general knowledge of how to install and configure NGINX.
- A working PHP FPM setup.
- NGINX must be installed, and configured* to use PHP FPM as fastcgi server.
* Covered by config provided below, but for general info see online NGINX wiki.
This example is simplified to get you up and running, see Virtual host template for more options and details on best practice.
- Place virtualhost config (example below) in suitable nginx config folder, typically:
- Debian/Ubuntu:
/etc/nginx/sites-enabled/<yoursite>.conf
- RHEL/CentOS/Amazon-Linux:
/etc/nginx/conf.d/<yoursite>.conf
- Debian/Ubuntu:
- Adjust the basics to your setup:
- listen: IP and port number to listen to.
- server_name: Host list, example
ez.no *.ez.no
- Or for local dev for instance
ezinstall.localhost
, with corresponding entry in your hosts file. - root: Point this to
web
directory of your eZ installation. - fastcgi_pass: Socket or TCP address of
php-fpm
.
- Copy
ez_params.d
directory to folder to you nginx config folder, for examples:- Debian/Ubuntu:
sudo cp -R doc/nginx/ez_params.d /etc/nginx/
- RHEL/CentOS/Amazon-Linux:
sudo cp -R doc/nginx/ez_params.d /etc/nginx/
- Debian/Ubuntu:
- Restart Nginx, normally:
sudo service nginx restart
Example config:
server {
listen 80;
# Further documentation: http://nginx.org/en/docs/http/server_names.html
server_name localhost;
root /var/www/ezinstall/web;
# Additional Assetic rules for environments different from dev,
# remember to run php app/console assetic:dump --env=prod
# and make sure to comment these out in "dev" environment.
include ez_params.d/ez_prod_rewrite_params;
# Access to repository images in single server setup
include ez_params.d/ez_rewrite_params;
# upload max size
client_max_body_size 48m;
location / {
location ~ ^/app\.php(/|$) {
include ez_params.d/ez_fastcgi_params;
# FPM socket
# Possible values : unix:/var/run/php5-fpm.sock or 127.0.0.1:9000
fastcgi_pass 127.0.0.1:9000;
# FPM fastcgi_read_timeout
fastcgi_read_timeout 90s;
# Environment.
# Possible values: "prod" and "dev" out-of-the-box, other values possible with proper configuration
# Make sure to comment the "ez_params.d/ez_prod_rewrite_params" include above in dev.
# Defaults to "prod" if omitted
fastcgi_param SYMFONY_ENV prod;
}
}
include ez_params.d/ez_server_params;
}
This folder contains vhost.template
file which provides more features you can enable in your virtual host configuration.
Bash script (Unix/Linux/OS X) exists to generate the configuration. To display the help text, execute the following command from your eZ installation root:
./bin/vhost.sh -h