Files
archived-php-sdk-binary-tools/pgo/cases/drupal/nginx.partial.conf
Anatol Belski e51c37a375 Fix EOL
2018-07-25 19:38:02 +02:00

20 lines
578 B
Plaintext

server {
listen PHP_SDK_PGO_DRUPAL_HTTP_PORT;
server_name PHP_SDK_PGO_DRUPAL_HTTP_HOST;
root PHP_SDK_PGO_DRUPAL_DOCROOT;
index index.html index.htm index.php;
location / {
try_files $uri /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass PHP_SDK_PGO_PHP_FCGI_HOST:PHP_SDK_PGO_PHP_FCGI_PORT;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}