Vue File Manager with Laravel - Your Private Cloud

Vue File Manager with Laravel - Your Private Cloud V2.2.7 - Nulled

No permission to download

KaoVN

Well-known member
Null Master
Trusted Uploader
Oct 15, 2019
627
722
100
KaoVN
Modify this NGINX setting inside your [your-domain].conf

NGINX:
location / {
        try_files $uri $uri/ /index.php?$args;
        location ~* ^.+\.(ogg|ogv|svg|svgz|swf|eot|otf|woff|woff2|mov|mp3|mp4|webm|flv|ttf|rss|atom|jpg|jpeg|gif|png|webp|ico|bmp|mid|midi|wav|rtf|css|js|jar)$ {
            expires max;
           }
Then run this command from your public_html directory
Bash:
php artisan storage:link && php artisan cache:clear && php artisan config:clear
 

osamaeg

Active member
Trusted Uploader
Mar 15, 2020
226
241
43
USA 🇺🇸
bbo.bz
Modify this NGINX setting inside your [your-domain].conf

NGINX:
location / {
        try_files $uri $uri/ /index.php?$args;
        location ~* ^.+\.(ogg|ogv|svg|svgz|swf|eot|otf|woff|woff2|mov|mp3|mp4|webm|flv|ttf|rss|atom|jpg|jpeg|gif|png|webp|ico|bmp|mid|midi|wav|rtf|css|js|jar)$ {
            expires max;
           }
Then run this command from your public_html directory
Bash:
php artisan storage:link && php artisan cache:clear && php artisan config:clear
I'm at the work office now when I get home you can help me and can you send me in private my whatsapp number to tell you when I get home
 
  • Like
Reactions: audacity

KaoVN

Well-known member
Null Master
Trusted Uploader
Oct 15, 2019
627
722
100
KaoVN
I'm at the work office now when I get home you can help me and can you send me in private my whatsapp number to tell you when I get home
Your issue so far caused by NGINX cache system. I have already had trouble with it and what I need to do is completely eliminating NGINX cache system for mime types. Now I move to reserve proxy so I don't have trouble with it anymore :)
 
  • Like
Reactions: katalk and audacity

osamaeg

Active member
Trusted Uploader
Mar 15, 2020
226
241
43
USA 🇺🇸
bbo.bz
Modify this NGINX setting inside your [your-domain].conf

NGINX:
location / {
        try_files $uri $uri/ /index.php?$args;
        location ~* ^.+\.(ogg|ogv|svg|svgz|swf|eot|otf|woff|woff2|mov|mp3|mp4|webm|flv|ttf|rss|atom|jpg|jpeg|gif|png|webp|ico|bmp|mid|midi|wav|rtf|css|js|jar)$ {
            expires max;
           }
Then run this command from your public_html directory
Bash:
php artisan storage:link && php artisan cache:clear && php artisan config:clear
Can you provide me with an explanation or path?
 

FlyingHigh

Active member
Babiato Lover
GiveAway Master
Trusted Seller
Trusted Uploader
May 20, 2022
315
245
43
anyone have extended version ?
 

xcalibur

New member
May 6, 2022
24
4
3
Modify this NGINX setting inside your [your-domain].conf

NGINX:
location / {
        try_files $uri $uri/ /index.php?$args;
        location ~* ^.+\.(ogg|ogv|svg|svgz|swf|eot|otf|woff|woff2|mov|mp3|mp4|webm|flv|ttf|rss|atom|jpg|jpeg|gif|png|webp|ico|bmp|mid|midi|wav|rtf|css|js|jar)$ {
            expires max;
           }
Then run this command from your public_html directory
Bash:
php artisan storage:link && php artisan cache:clear && php artisan config:clear
Done this but No Luck Here is my conf ..

server {
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
{{ssl_certificate_key}}
{{ssl_certificate}}
server_name www.xeedrive.xyz;
return 301 https://.xyz$request_uri;
}

server {
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
{{ssl_certificate_key}}
{{ssl_certificate}}
server_name .xyz www1..xyz;
{{root}}

{{nginx_access_log}}
{{nginx_error_log}}

if ($scheme != "https") {
rewrite ^ https://$host$uri permanent;
}

location ~ /.well-known {
auth_basic off;
allow all;
}

{{settings}}

try_files $uri $uri/ /index.php?$args;
index index.php index.html;

location ~ \.php$ {
include fastcgi_params;
fastcgi_intercept_errors on;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
try_files $uri =404;
fastcgi_read_timeout 3600;
fastcgi_send_timeout 3600;
fastcgi_param HTTPS $fastcgi_https;
fastcgi_pass 127.0.0.1:{{php_fpm_port}};
fastcgi_param PHP_VALUE "{{php_settings}}";
}

location ~* ^.+\.(css|js|jpg|jpeg|gif|png|ico|gz|svg|svgz|ttf|otf|woff|woff2|eot|mp4|ogg|ogv|webm|webp|zip|swf)$ {
add_header Access-Control-Allow-Origin "*";
expires max;
access_log off;
}

if (-f $request_filename) {
break;
}
}
 

branljohns

Member
Jul 6, 2020
82
59
18
/www/server/php/81/bin/php /www/wwwroot/xxxx.com/artisan schedule:run

Lol, I spent hours trying various combinations to get that damn Cron to work yesterday. Never considered switching to bin/php rather than sbin/php-fpm as the script suggested. 🤦‍♂️
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu