Skip to content

Commit

Permalink
Fix EZP-23884: Nginx template misses semicolon for most of the fastcg…
Browse files Browse the repository at this point in the history
…i_params
  • Loading branch information
crevillo committed Jan 12, 2015
1 parent 9c6b91e commit 55bf13f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/nginx/etc/nginx/sites-available/mysite.com
Expand Up @@ -46,42 +46,42 @@ server {
# Whether to use custom ClassLoader (autoloader) file
# Needs to be a valid path relative to root web/ directory
# Defaults to bootstrap.php.cache, or autoload.php in debug, supported on 2015.01 and higher
#fastcgi_param CUSTOM_CLASSLOADER_FILE "../ezpublish/autoload.php"
#fastcgi_param CUSTOM_CLASSLOADER_FILE "../ezpublish/autoload.php";

# Whether to use Symfony's ApcClassLoader.
# Possible values: 0 or 1
# Defaults to 0 if omitted, supported on 5.2 and higher
#! Not supported as of 2015.01, use CUSTOM_CLASSLOADER_FILE instead for this.
#fastcgi_param USE_APC_CLASSLOADER 0
#fastcgi_param USE_APC_CLASSLOADER 0;

# Prefix used when USE_APC_CLASSLOADER is set to 1.
# Use a unique prefix in order to prevent cache key conflicts
# with other applications also using APC.
# Defaults to "ezpublish" if omitted, supported on 5.2 and higher
#! Not supported as of 2015.01, use CUSTOM_CLASSLOADER_FILE instead for this.
#fastcgi_param APC_CLASSLOADER_PREFIX "ezpublish"
#fastcgi_param APC_CLASSLOADER_PREFIX "ezpublish";

# Whether to use debugging.
# Possible values: 0 or 1
# Defaults to 0 if omitted, unless ENVIRONMENT is set to: "dev", supported on 5.2 and higher
#fastcgi_param USE_DEBUGGING 0
#fastcgi_param USE_DEBUGGING 0;

# Whether to use Symfony's HTTP Caching.
# Disable it if you are using an external reverse proxy (e.g. Varnish)
# Possible values: 0 or 1
# Defaults to 1 if omitted, unless ENVIRONMENT is set to: "dev", supported on 5.2 and higher
#fastcgi_param USE_HTTP_CACHE 1
#fastcgi_param USE_HTTP_CACHE 1;

# Whether to use custom HTTP Cache class if USE_HTTP_CACHE is enabled
# Value must be na autoloadable cache class
# Defaults to "EzPublishCache", supported on 2015.01 and higher
#fastcgi_param HTTP_CACHE_CLASS "\Vendor\Project\MyCache"
#fastcgi_param HTTP_CACHE_CLASS "\Vendor\Project\MyCache";

# Defines the proxies to trust.
# Separate entries by a comma
# Example: "proxy1.example.com,proxy2.example.org"
# By default, no trusted proxies are set, supported on 5.2 and higher
#fastcgi_param TRUSTED_PROXIES "%PROXY%"
#fastcgi_param TRUSTED_PROXIES "%PROXY%";
}
}

Expand Down

0 comments on commit 55bf13f

Please sign in to comment.