summaryrefslogtreecommitdiff
path: root/plugins/nginx/templates
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/nginx/templates')
-rw-r--r--plugins/nginx/templates/plain_php27
-rw-r--r--plugins/nginx/templates/symfony227
2 files changed, 0 insertions, 54 deletions
diff --git a/plugins/nginx/templates/plain_php b/plugins/nginx/templates/plain_php
deleted file mode 100644
index f7995f5d5..000000000
--- a/plugins/nginx/templates/plain_php
+++ /dev/null
@@ -1,27 +0,0 @@
-server {
- root /home/{user}/www/{vhost};
- index index.php;
-
- server_name {vhost};
-
- error_log /var/log/nginx/{vhost}.error.log;
- access_log /var/log/nginx/{vhost}.access.log;
-
- location / {
- try_files $uri $uri/ $uri/index.php;
- }
-
- location ~ \.php$ {
- include fastcgi_params;
- fastcgi_index index.php;
- fastcgi_pass 127.0.0.1:{pool_port};
- fastcgi_split_path_info ^(.+\.php)(/.*)$;
-
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- fastcgi_param HTTPS off;
- }
-
- location ~ /\.ht {
- deny all;
- }
-}
diff --git a/plugins/nginx/templates/symfony2 b/plugins/nginx/templates/symfony2
deleted file mode 100644
index c2eeaec0a..000000000
--- a/plugins/nginx/templates/symfony2
+++ /dev/null
@@ -1,27 +0,0 @@
-server {
- root /home/{user}/www/{vhost}/web;
- index app_dev.php;
-
- server_name {vhost};
- client_max_body_size 10M;
-
- error_log /var/log/nginx/{vhost}.error.log;
- access_log /var/log/nginx/{vhost}.access.log;
-
- location / {
- try_files $uri $uri/ /app_dev.php$uri /app_dev.php$is_args$args;
- }
-
- # pass the PHP scripts to FastCGI server listening on 127.0.0.1:{pool_port}
- location ~ ^/(app|app_dev|check)\.php(/|$) {
- fastcgi_pass 127.0.0.1:{pool_port};
- fastcgi_split_path_info ^(.+\.php)(/.*)$;
- include fastcgi_params;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- fastcgi_param HTTPS off;
- }
-
- location ~ /\.ht {
- deny all;
- }
-}