Jump to content

hunter69

Members
  • Posts

    237
  • Joined

  • Last visited

Everything posted by hunter69

  1. maybe I misunderstand the above code overwritewebroot => 'owncloud', I always seems to have problems when adding that and I equated it to having the following data directory /var/www/html/data am I misunderstanding this? Also my code in Apache default.conf is <Location /owncloud> ProxyPass http://192.168.2.97:8000 ReverseProxyPass http://192.168.2.97:8000 </Location> Does that look write? Thanks again Bill
  2. Can you tell me how to change my path from var/www/html/data to var/www/owncloud/data I am stuck on this issue. I am installing the container to /mnt/cache/appdata/owncloud/ I cannot change it in the intial install in the docker. The I attempt to change it in the web config and it states I do not have the rights to write into that directory. Thank you very very much for responding and helping. I have been working very hard lots of hours to get this working. Bill
  3. I have a linuxserver.io apache revrse proxy running. I have installed the Bungy owncloud docker. I am attaching screenshots to see if anyone can suggest what I need to change to fix my issue. Have you seen the attached screenshots before. The normal (blue) screenshot is when I am accessing owncloud using http://server.com:8000. The white screen shot is when I access owncloud using https://server.com/owncloud. Not only is it white but I cannot login to owncloud. Thanks Bill
  4. I am trying to install this version of the owncloud docker. I am receiving an error when installing it (attached). Prior to attempting this version of the docker, I installed Bungy;s docker. I removed Bungy's docker (including image) deleted its install folder. I then attempted to install this version of the docker. Any clue why I would be seeing this issue? Thanks for any help Bill
  5. So I notice one difference with your config.php that I have not been able to workout. Here is yours: 'datadirectory' => '/var/www/owncloud/data', 'overwritewebroot' => '/owncloud', Here is mine: 'datadirectory' => '/var/www/html/data', How did you set your directory to owncloud versus html? Thanks Bill
  6. Thanks I will be working on it tonight. Do you have a config with owncloud in it. Here is my current config.php (it is unmodified at this time) Thanks so much Bill I do, and have posted it several times on the forum. If you can't find it I'll post it in a couple of weeks if you're still struggling. (When I get home) Sent from my LG-H815 using Tapatalk So I am still struggling to get owncloud working behind the Apache reverse Proxy. Here is what I have accomplished: 1. I have ssl working to apache using startssl and cloudflare. I can get to the apache webpage using https://server.com 2. I managed to get Owncloud working with mariadb. I ran into the bin logging bug and managed to change bin logging=mixed using the mysql toolbox. Here is where I am struggling to make work. I want to go to https://server.com/owncloud. I always get an error no matter what changes I make. I am editing the owncloud config.php and apache default.conf. Here is the apache default.conf is: <VirtualHost *:80> DocumentRoot /config/www/ <Directory "/config/www/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost> <VirtualHost *:443> ServerName www.example.com SSLEngine on SSLCertificateFile "/config/keys/server.crt" SSLCertificateKeyFile "/config/keys/server.key" SSLCertificateChainFile "/config/keys/root.crt" DocumentRoot /config/www/ <Location /owncloud> ProxyPass https://server.com:8000 ProxyPassReverse https://server.com:8000 <Location> <Directory "/config/www/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost> No I have started over several times with owncloud. This must be where I don't understand the necessary changes. I am connecting to apache through https but I cannot connect to owncloud using https no matter what I change. Http has no issue. Could you help me make the proper changes in order to connect to owncloud through the apache reverse proxy using https? Thanks for any help provided Bill Bill there's also a config file that needs to be changed for Owncloud. I think it is config.php but I'll need to check when I get some time. I've posted the changes required before on the board and they're almost certainly in the owncloud thread. Sent from my LG-H815 using Tapatalk That is what I am looking for. I have found changes needed in the config.php but it doesn't seem to matter what I do in the owncloud config.php I have not got it to work. SO I was looking to see what specifics needed to be change to see what I am doing wrong. I keep thinking it is tied to https in owncloud. I keep thinking that since I am accessing the apache server using https, then it is forwarding https to owncloud. I have never been able to access owncloud via https. I will type https://localserverip:8000. Owncloud does not respond. So when I try to access owncloud vis https://server.com/owncloud it does not respond. Am I making sense? Here is my current unmodified config.php. <?php $CONFIG = array ( 'instanceid' => 'instance_id', 'passwordsalt' => 'password', 'secret' => 'secretnumbers', 'trusted_domains' => array ( 0 => '192.168.2.97:8000', ), 'datadirectory' => '/var/www/html/data', 'overwrite.cli.url' => 'http://192.168.2.97:8000', 'dbtype' => 'mysql', 'version' => '9.0.1.3', 'dbname' => 'owncloud', 'dbhost' => '192.168.2.97', 'dbtableprefix' => 'oc_', 'dbuser' => 'owncloud', 'dbpassword' => 'dbpassword', 'logtimezone' => 'UTC', 'installed' => true, ); Thanks for helping me out Bill
  7. Thanks I will be working on it tonight. Do you have a config with owncloud in it. Thanks so much Bill I do, and have posted it several times on the forum. If you can't find it I'll post it in a couple of weeks if you're still struggling. (When I get home) Sent from my LG-H815 using Tapatalk So I am still struggling to get owncloud working behind the Apache reverse Proxy. Here is what I have accomplished: 1. I have ssl working to apache using startssl and cloudflare. I can get to the apache webpage using https://server.com 2. I managed to get Owncloud working with mariadb. I ran into the bin logging bug and managed to change bin logging=mixed using the mysql toolbox. Here is where I am struggling to make work. I want to go to https://server.com/owncloud. I always get an error no matter what changes I make. I am editing the owncloud config.php and apache default.conf. Here is the apache default.conf is: <VirtualHost *:80> DocumentRoot /config/www/ <Directory "/config/www/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost> <VirtualHost *:443> ServerName www.example.com SSLEngine on SSLCertificateFile "/config/keys/server.crt" SSLCertificateKeyFile "/config/keys/server.key" SSLCertificateChainFile "/config/keys/root.crt" DocumentRoot /config/www/ <Location /owncloud> ProxyPass https://server.com:8000 ProxyPassReverse https://server.com:8000 <Location> <Directory "/config/www/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost> No I have started over several times with owncloud. This must be where I don't understand the necessary changes. I am connecting to apache through https but I cannot connect to owncloud using https no matter what I change. Http has no issue. Could you help me make the proper changes in order to connect to owncloud through the apache reverse proxy using https? Thanks for any help provided Bill
  8. Well I have https working for my reverse proxy. I also have owncloud working . I cannot seem to access owncloud through my reverse proxy. Can anyone look at my config and see what my issue is? Owncloud Config $CONFIG = array ( 'instanceid' => 'oc8n5nt4nvsb', 'passwordsalt' => 'secret', 'secret' => 'anothersecret', 'trusted_domains' => array ( 0 => '192.168.2.97', 1 => 'server.com', ), 'truested_proxies' => ['192.168.2.97'], 'datadirectory' => '/var/www/html/data', 'overwrite.cli.url' => 'https:/server.com', 'overwritehost' => 'server.com', 'overwriteprotocol' => 'https', 'dbtype' => 'sqlite3', 'version' => '9.0.1.3', 'logtimezone' => 'UTC', 'installed' => true, 'forcessl' => true, 'forceSSLforSubdomains' => true, ); apache default config <VirtualHost *:80> DocumentRoot /config/www/ <Directory "/config/www/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost> <VirtualHost *:443> ServerName www.example.com SSLEngine on SSLCertificateFile "/config/keys/server.crt" SSLCertificateKeyFile "/config/keys/server.key" SSLCertificateChainFile "/config/keys/root.crt" DocumentRoot /config/www/ <Location /owncloud> ProxyPass https://server.com:8000 ProxyPassReverse https://server.com:8000 <Location> <Directory "/config/www/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost> Thank you for any help Bill
  9. Thanks I will be working on it tonight. Do you have a config with owncloud in it. Thanks so much Bill
  10. Are you editing your config file using MC (midnight commander)?
  11. Thanks for the reply. There are only 2 things I am wonder: 1. How do people edit the Apache configure file. Every time I edit it, it stops ssl. 2. I received 3 files for ssl. The cert, .key and chain file. I am not sure why I don't have to use the chain file. Currently I use midnight commander to edit the config. I bet if I could figure out how to edit the config properly I would be able get things done faster. Bill Sent from my iPhone using Tapatalk
  12. FYI I managed to get this functioning. I only utilized the 2_.hunterstec.com.crt and the huntertec.key. I had to rename both files to cert.crt and cert.key. I replaced the files located in the keys folder. I now have a function ssl connection to my apache server using a startssl personal ssl certificate.
  13. I currently am in the process of setting up owncloud behind a reverse proxy. My Goals are to access owncloud through a reverse proxy via a ssl connection. Here is what I have working: I am running the Apache container from linuxserver.io. I own my own domain and have a functioning ssl certificate for my domain. I have ssl connection to the Apache server from the lan and the web. I have owncloud running on my Lan. 1. Now what do I need to change in the Apache server to access owncloud through the reverse proxy? 2. I can access my apache server through a link like this https://domain.com. In order to access owncloud from the web through the reverse proxy will I need to create a subdomain example https://subdomain.domain.com? If I am incorrect, once the changes are made in apache, how do I access owncloud via the web? Thanks Bill
  14. Can you please help me get ssl functioning? I cannot seem to get it going with a personal startssl cert. Info I bought a domain from godaddy. My domain is "hunterstec.com. I paid the $60 for a 2 year personal ssl certificate. I went through all the steps to obtain the cert. I followed the following link to assist me in installing the certificates that I obtained from startssl. https://www.linuxserver.io/index.php/overview-reverse-proxy-with-docker/add-ssl-to-your-apache-reverseproxy-docker/ Here is what I have: a .key called hunterstec.key a cert called 2_.hunterstec.com.crt a SSLCertificateChainFile called 1_root_bundle.crt I placed the files this path Apache/config/keys Now the above tutorial does not talk about editing the config file but other tutorials talk about the necessity so it will know the ssl cert I placed into Apache/config/keys I am attaching my config screenshot. What I have tried (and has not worked)is: I changed the cert.crt to 2_.hunterstec.com.crt and changed the cert.key to hunterstec.key. Saved the config file. Restarted Apache. This did not work. I then repeated the steps above but also added an entry for SSLCertificateChainFile (this made no difference). What am I missing?
  15. I am setting up SSL on the Apache container. I followed this link for startssl https://www.linuxserver.io/index.php/overview-reverse-proxy-with-docker/add-ssl-to-your-apache-reverseproxy-docker/ I decided to pay the $60 for the 2 year personal ssl so I should not have issues with subdomains. I completed the entire process and have obtained the certificate. In the tutorial it talks about receiving 3 files. I did not receive the cert.key file. I received 2 files: root.bundle.crt domain.crt Question: The tutorial talks about having to decrypt. Since I did not receive the .key, do I need to perform this step? If not do I: Place in the certs /config/keys folder of the Apache docker? Thanks in advance for any help Bill
  16. I am attempting to install Nginx-letsencrypt. I cannot get the container to install, I click create and nothing happens. I set the config path to /mnt/cache/nginx/config. http port is 81, https is 443. Nothing happens. I have installed the following containers successfully: owncloud and apache. Is anyone else having this problem? Any ideas what I could do to get around this issue? I really appreciate you taking your time to help. Bill
  17. I am having problems with the nginx container with Let's encrypt. The problem: I setup the container to install mnt/cache/nginx/config (is the path I set). I set port 81 for http port and 943 for https. When I click create it does not do anything. I have left it for at least 30 min and nothing occurred. I can install the apache container and also own cloud with no issues. I have forwards port 443 to my server. Any ideas why this would happen? I really appreciate you taking time to help me Bill
  18. I am pretty new to nginx. Can you provide the path and file name that you are editing to add the above code. Thanks for any help
  19. my server address is 192.168.2.97:8000. When I got the error initially I hit the button the add it as a same domain but it has never moved past the error. Ideas or do you see an issue in the config? Thanks again for taking the time to help. I really appreciate it Bill I am attaching the error that I see and the etire screenshot of the config. I have stopped and restarted owncloud. Ideas? This is a virtual unraid server. The error clearing indicates it wants it's own IP but the ESXI Server that it is on is 192.168.2.254. Would that have anything to do with it? I ended up fixing this error by changing the trusted domain from 192.168.2.97:8000 to 192.168.2.97. That's it that fixed my issue Thanks to all those that took the time to respond and help.
  20. my server address is 192.168.2.97:8000. When I got the error initially I hit the button the add it as a same domain but it has never moved past the error. Ideas or do you see an issue in the config? Thanks again for taking the time to help. I really appreciate it Bill I am attaching the error that I see and the etire screenshot of the config. I have stopped and restarted owncloud. Ideas? This is a virtual unraid server. The error clearing indicates it wants it's own IP but the ESXI Server that it is on is 192.168.2.254. Would that have anything to do with it?
  21. my server address is 192.168.2.97:8000. When I got the error initially I hit the button the add it as a same domain but it has never moved past the error. Ideas or do you see an issue in the config? Thanks again for taking the time to help. I really appreciate it Bill
  22. I am getting this error "You are accessing the server from an untrusted domain.". I have searched this and ssh'd to unraid. I looked at the config.php. I am attaching the screenshot (I dont see anything wrong with it) of the config.php. Can you please look at it and let me know if you see why I am getting the error. Thanks Bill
  23. I am trying to edit the owncloud config.php in order to do basic setup (adding a trusted domain. I cannot seem to edit it. Can anybody share how you edited the config.php? I can do it via unraid or windows 7. I installed the config at mnt/user/apps/owncloud/config Thanks
  24. They are running out of space. Server 2011 doesn't have the best redundancy. Microsoft Licensing. I like the stability of Unraid (have used it for years). Unraid V6 brings about quite the change. There setup is working but I will need to add more storage. It currently runs on an atom processor so I will need to look at the specs (64bit or not) and ram thus the thinking of a lightweight linux OS.
  25. I provide a family type tech support for a business. Currently the business (small business, tech wise) runs a windows home server 2011. I really hate Windows Home server 2011. The Windows Home Server 2011 provides storage for music files (it is a dance studio) for sonos. It also provides a place to backup computers to and it displays powerpoint presentations to 2 tv's. I am thinking of changing the things. I really like Unraid V6. SO my thoughts are to create a Unraid Plus server (they don't need a ton of storage but more than they have now). Unraid would provide the needed storage. Next I would install a KVM Hypervisor and host a small lightweight linux OS and use an open source powerpoint viewer. I looks as though I can pass a gpu through to get the necessary video. Thoughts on the idea/setup.
×
×
  • Create New...