summaryrefslogtreecommitdiff
path: root/debian/nginx.conf.in
diff options
context:
space:
mode:
authorOndřej Surý <ondrej@debian.org>2018-11-07 04:17:56 +0100
committerOndřej Surý <ondrej@debian.org>2018-11-07 04:17:56 +0100
commit7c6751fbb158b9599c790e41a0846749f8618d16 (patch)
tree98280b46ecfc1f021502fa4e91652acfa708aa77 /debian/nginx.conf.in
parent0b7e79e286cae59ec1d349780b1beab71df79996 (diff)
parent67b8f0366d373ae697ac206b2571813a6e7afd88 (diff)
Record rss-bridge (2018-07-17-1.2) in archive suite sid
Diffstat (limited to 'debian/nginx.conf.in')
-rw-r--r--debian/nginx.conf.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/nginx.conf.in b/debian/nginx.conf.in
new file mode 100644
index 0000000..63ea8c0
--- /dev/null
+++ b/debian/nginx.conf.in
@@ -0,0 +1,12 @@
+server {
+ listen 80;
+ root /usr/share/rss-bridge;
+ index index.php;
+
+ location /index.php {
+ fastcgi_pass unix:/var/run/php/php@PHP_VERSION@-fpm.sock;
+ fastcgi_index index.php;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ include fastcgi_params;
+ }
+}