It looks like you're new here. If you want to get involved, click one of these buttons!
I have ownCloud installed on a Debian Squeeze using a tutorial that I have found online:
http://jasminklipic.blogspot.com/2012/05/owncloud-debian-sueeze.html
However, for some reason the Owncloud runs very slowly and it literally took me a minute to even load up the file list once I logged in.
I am just wondering if anyone of you have ever tried to tweak Owncloud successfully to run faster, I have tried to use Nginx as the front-end with PHP-FPM as the PHP processing layer without too much success and at the moment I have no file in my owncloud so I am free to reinstall my VPS with any distribution.
Thanks!
Comments
Works fine with httpd on centos.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksAnd you just use a standard LAMP installation? Is there any tutorial you used? Thanks!
Have a domain that you have no use for at the moment? Click here to see how you can help!
96Forum: Low End VPS Discussions
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanks@zhuanyi
Yep. Just a standard LAMP installation.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksIt also works fine with the standard LAMP installation on Ubuntu.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksInteresting, seems mine is the only slow one with the standard LAMP, has anyone tried to run it using Nginx as the front-end?
Have a domain that you have no use for at the moment? Click here to see how you can help!
96Forum: Low End VPS Discussions
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksNever tried it myself...but there are some special notes for web servers other than Apache here... http://owncloud.org/support/webserver-notes/
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksThought about it. Watched how it installed itself and decided that SFTP isn't so bad. The developers could learn a thing or twenty about optimization.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksI actually tried installing it on Nginx before Apache and didn't have much luck. I'm interested to see if anyone has.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksTried this but apparently their configuration notes for Nginx did not work, when I tried to load the page, it looks as if the entire CSS was broken and all text were crammed together
Have a domain that you have no use for at the moment? Click here to see how you can help!
96Forum: Low End VPS Discussions
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksHere's my config for owncloud on nginx:
# redirect http to https. server { listen 80; server_name cloud.domain.com; rewrite ^ https://$server_name$request_uri? permanent; # enforce https } # owncloud (ssl/tls) server { listen 443 ssl; ssl_certificate /etc/nginx/conf.d/server.crt; ssl_certificate_key /etc/nginx/conf.d/server.key; server_name cloud.domain.com; root /home/night/owncloud; index index.php; client_max_body_size 1000M; # set maximum upload size # deny direct access location ~ ^/(data|config|\.ht|db_structure\.xml|README) { deny all; } # default try order location / { try_files $uri $uri/ @webdav; } # owncloud WebDAV location @webdav { fastcgi_split_path_info ^(.+\.php)(/.*)$; fastcgi_pass 127.0.0.1:9000; # or use php-fpm with: "unix:/var/run/php-fpm/php-fpm.sock;" fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS on; include fastcgi_params; fastcgi_intercept_errors on; } # enable php location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; # or use php-fpm with: "unix:/var/run/php-fpm/php-fpm.sock;" fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS on; include fastcgi_params; fastcgi_intercept_errors on; } }Pretty sure that's the default config. Just make sure you have the latest version of nginx and that your php/nginx user has adequate permission to the directory.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksYes this is the default config, have you tried to log in to make sure it works?
Have a domain that you have no use for at the moment? Click here to see how you can help!
96Forum: Low End VPS Discussions
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanks