ZipFileMe is a cloud-enabled, mobile-ready, s3 and backblaze b2 integrated File uploading and sharing script. It’s easy to use, easy to install and very handy tool to share any type of files.
You can also:
AWS or BlackBlaze account
PHP >= 7.0.0
MySql >= 5.6.0
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
Make sure to read Server requirements before you start Laravel Requirement
allow_url_fopen should be set on inside your php.ini
mod_rewrite should be enabled for Apache
Admin Route : http://YOUR_DOMAIN/admin
user : superadministrator@zipfile.me
pass : thunder.32
<VirtualHost *:80>
DocumentRoot "/Users/myName/Projects/laravel/public"
ServerName myLaravel.dev
<Directory "/Users/myName/Projects/laravel/public">
AllowOverride All
Options FollowSymLinks +Indexes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
server {
listen 80;
root /usr/share/nginx/html/laravel/public;
index index.php index.html index.htm
server_name laravel.dev;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Your configurations could be different
Make sure you have setup virtual host currently