forked from GNUsocial/gnu-social
[DOCUMENTATION] Added X-Sendfile/X-Accel-Redirect to the sample nginx and apache config files
This commit is contained in:
parent
b4fced4bd7
commit
573ba2ee43
@ -44,6 +44,11 @@
|
|||||||
# RewriteRule (.*) index.php/$1 [L,QSA]
|
# RewriteRule (.*) index.php/$1 [L,QSA]
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
|
# Enable X-Sendfile if available. Still needs to be enabled in the config
|
||||||
|
<IfModule mod_xsendfile.c>
|
||||||
|
XSendFile On
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
<FilesMatch "\.(ini)">
|
<FilesMatch "\.(ini)">
|
||||||
<IfVersion < 2.3>
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
|
@ -31,6 +31,14 @@ server {
|
|||||||
# Index
|
# Index
|
||||||
index index.php;
|
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
|
# PHP
|
||||||
location ~ ^/(index|install)\.php(/.*)?$ {
|
location ~ ^/(index|install)\.php(/.*)?$ {
|
||||||
#location ^~ /index.php {
|
#location ^~ /index.php {
|
||||||
|
Loading…
Reference in New Issue
Block a user