]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
[DOCUMENTATION] Added X-Sendfile/X-Accel-Redirect to the sample nginx and apache...
authorMiguel Dantas <biodantasgs@gmail.com>
Sun, 4 Aug 2019 19:14:45 +0000 (20:14 +0100)
committerDiogo Cordeiro <diogo@fc.up.pt>
Thu, 8 Aug 2019 01:44:13 +0000 (02:44 +0100)
DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/htaccess.sample
DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample

index af6e19784d1aa3f720571594b92a2b5f216a0b3b..e4c7ff3c67ecfd7ba66494c9531dbc3745f6f894 100644 (file)
   # RewriteRule (.*) index.php/$1 [L,QSA]
 </IfModule>
 
+# Enable X-Sendfile if available. Still needs to be enabled in the config
+<IfModule mod_xsendfile.c>
+  XSendFile On
+</IfModule>
+
 <FilesMatch "\.(ini)">
     <IfVersion < 2.3>
         Order allow,deny
index 71f756d8ba72cb59343ec03a0ed8f3f9920a070c..0179445003e410d2dadd7cb2672579f39673f34a 100644 (file)
@@ -31,6 +31,14 @@ server {
 # Index
     index index.php;
 
+# X-Accel/X-Sendfile. Still needs to be enabled in the config
+    location /file {
+        internal;
+        # FIXME: Change "/path/to/gnusocial/root/" to the folder where
+        # attachments are stored (normally the same as the site root)
+        root /path/to/gnusocial/root/;
+    }
+
 # PHP
     location ~ ^/(index|install)\.php(/.*)?$ {
     #location ^~ /index.php {