Joshua Parker Ruehlig
Hall of Famer
- Joined
- Dec 5, 2011
- Messages
- 5,949
I don't see anything wrong there... maybe try browsing to http://owncloud.mydomain.com/index.phpHi,
I completed install and followed the earlier post to make it a owncloud.mydomain.com but when I go to the webgui I am prompted to download an octet file. This is my nginx.conf
Code:worker_processes 2; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile off; keepalive_timeout 65; gzip off; server { root /usr/local/www/owncloud; location = /robots.txt { allow all; access_log off; log_not_found off; } location = /favicon.ico { access_log off; log_not_found off; } index index.php; try_files $uri $uri/ /index.php$is_args$args; client_max_body_size 512M; location ~ ^/(?:\.|data|config|db_structure\.xml|README) { deny all; } location \.php(?:$|/) { fastcgi_split_path_info ^(.+\.php)(/.*)$; fastcgi_pass unix:/var/run/php-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; include fastcgi_params; fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on; } location \.(?:jpg|gif|ico|png|css|js|svg)$ { expires 30d; add_header Cache-Control public; } location ^/data { internal; alias /mnt/files; } } }
If I use the original conf I get this error
on your step using the /owncloud config you made a mistake somewhere. you could post that and I can comment of you like.