miarra / fileserver
Miarra: Fileserver based on Nette FW
Requires
- php: >= 8.0
- latte/latte: ^2.5
- nette/application: ^3.1
- nette/bootstrap: ^3.0
- nette/caching: ^3.0
- nette/database: ^3.0
- nette/di: ^3.0
- nette/finder: ^2.5
- nette/forms: ^3.0
- nette/http: ^3.0
- nette/mail: ^3.0
- nette/robot-loader: ^3.0
- nette/security: ^3.0
- nette/utils: ^3.2
- tracy/tracy: ^2.6
Requires (Dev)
- mockery/mockery: ^1.4
- nette/tester: ^2.4
- orisai/coding-standard: ^2.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-nette: ^0.12.21
- symfony/thanks: ^1
This package is auto-updated.
Last update: 2025-03-17 05:50:06 UTC
README
This aplication stores images for others aplications.
Setting
You must set options in local config file like this:
parametres:
username: 'username'
password: 'password'
cacheTime: '2 minutes'
Is recommended to set up VirtualHost like this (for Apache2):
<VirtualHost *:80>
# informations about webmaster showed in case that web crasched
ServerAdmin name@mail.foo
# domain to aply rules
ServerName domain.bar
# set document root
DocumentRoot /path/to/document/root
# default setting for document root
<Directory "/path/to/document/root/">
AllowOverride All
Order Allow,Deny
Allow from all
Require all granted
#is recommended to use XSendFile
<IfModule mod_xsendfile.c>
<Files *.php>
XSendFile On
XSendFilePath /path/to/images/folder/
</Files>
</IfModule>
#MOD_X_SENDFILE_ENABLED will be 1 if XSendFile is enabled, 0 otherwise
SetEnv MOD_X_SENDFILE_ENABLED 0
</Directory>
</VirtualHost>
Folders log
, temp
and images
must have right to write.
Saving and Loading files/images
For save, load and delete image use miarra/filemanipulator
which you can find
on packagist https://packagist.org/packages/miarra/filemanipulator
or on bitbucked https://bitbucket.org/miarra/filemanipulator.git
.
Security
All files are accessable only from given URL. Direct access is not permited.
In case you don't use PROXY, you need concatenate returned URL with your file server URL and server images folder
(Example: 'https://< yourFileServerURL.xy >/images/< yourReturnedURL >').
Use Https protocol only.
Conclusion
This Aplication runs with PHP 8.0 and Nette 3.1 and it is property of Miarra © 2021