Jump to content
XPEnology Community

chege

Member
  • Posts

    143
  • Joined

  • Last visited

Posts posted by chege

  1. any one go to try DSM 6.1 Beta XD

     

    As for now its only possible thru virtualDSM on DSM 6.0. Synology always is messing with beta update and always is problem with volumes/drives on clean or upgraded system.

  2. Thats great news. Thanks for the info.

    Did you use random SN and mac or from excel sheet? Did you register with QC?

    Im trying to figure out my problem with dockerDSM.

     

    Im also having problems with other docker image. Its crashing my docker after start.

  3. Does anyone achieved to run VirtualDSM or dockerDSM package on new DSM 6.0.2?

     

    For some reasons i cant start any of those on ESXI 6 even with 3 ethernet ports. Packages are installed but its problem with running it, cant uninstall them either.

  4. Yes, Mailplus server and mailplus works like a charm. You just need to activate in mailplus server accounts which can use it. Its because only 5 accounts can use it for free. For more you need buy licence.

  5. I'm having dell 2950, so I don't have vt-d either.

     

    I'm using little bit modified ovf from this post. I changed 2nd disk size to 160gb and added one more disk 100gb. During import i did chose thin provisioning and when dsm 1st start then shows disk error, but after creating raid group error been fixed and all is fine now. Modifying other parameters like ram, CPU or Ethernet also is not a problem, vm works fine.

     

    viewtopic.php?f=2&t=16114&start=60#p65508

  6. Hi guys, my setup on esxi 6.0 works like a harm, even btrfs without a problems, at least Web gui don't shows any, didn't check logs. But I'm having problems with docker dsm and virtual dsm manager. With docker dsm I can configure and start new dsm6 but Web gui shows me blank page. With virtual dsm Manger is problem, when I create virtual dsm I can't start it, I can't delete it, nothing works here.

     

    Few other packages checked and works, except Mongodb, let's encrypt works great. New Web server package looks great, mailsplus server with mailplus client also looking good.

  7. Hi.

    If you can access you xpenology server from internet then its pretty simple. Ive done this in few simple steps.

    1. Create file for each 3rd party in directory /usr/local/etc/

    2. Add include line for each in /etc/httpd/conf/httpd.conf

    3. Restart httpd-user

     

    Here is few examples how to redirect ports 80 and 443 to custom port:

     

    1. Access thru subdomain and port 80

     LoadModule proxy_module modules/mod_proxy.so
     LoadModule proxy_connect_module modules/mod_proxy_connect.so
     LoadModule proxy_http_module modules/mod_proxy_http.so
    
    
    ProxyRequests Off
    ProxyPreserveHost On
    
    #For Subdomain dsm
    NameVirtualHost *:80
    
    
     ServerName 3rdPartySubdomain.xpenologyNASdomain
    
       Order allow,deny
       Allow from all
    
    
     ProxyPass / http://localserveraddress:port/
     ProxyPassReverse / http://localserveraddress:port/
    
    
    

     

    2. Access thru subdomain and port 443 its https connection

     LoadModule proxy_module modules/mod_proxy.so
     LoadModule proxy_connect_module modules/mod_proxy_connect.so
     LoadModule proxy_http_module modules/mod_proxy_http.so
    
    
    ProxyRequests Off
    ProxyPreserveHost On
    
    #For Subdomain dsm
    
    NameVirtualHost *:443
    
    
     ServerName 3rdPartySubdomain.xpenologyNASdomain
     SSLCipherSuite HIGH:MEDIUM
     SSLProtocol all -SSLv2
     SSLCertificateFile /usr/syno/etc/ssl/ssl.crt/server.crt
     SSLCertificateKeyFile /usr/syno/etc/ssl/ssl.key/server.key
     SSLEngine On
     SSLProxyEngine On
     ProxyRequests Off
     ProxyVia Off
    
       Order allow,deny
       Allow from all
    
    
     ProxyPass / http://localserveraddress:port/
     ProxyPassReverse / http://localserveraddress:port/
    
    
    

     

    3. Access thru subdomain and ports 80 or 443

     LoadModule proxy_module modules/mod_proxy.so
     LoadModule proxy_connect_module modules/mod_proxy_connect.so
     LoadModule proxy_http_module modules/mod_proxy_http.so
    
    
    ProxyRequests Off
    ProxyPreserveHost On
    
    #For Subdomain dsm
    NameVirtualHost *:80
    
    
     ServerName 3rdPartySubdomain.xpenologyNASdomain
    
       Redirect / https://3rdPartySubdomain.xpenologyNASdomain/
    
    
    
    NameVirtualHost *:443
    
    
     ServerName 3rdPartySubdomain.xpenologyNASdomain
     SSLCipherSuite HIGH:MEDIUM
     SSLProtocol all -SSLv2
     SSLCertificateFile /usr/syno/etc/ssl/ssl.crt/server.crt
     SSLCertificateKeyFile /usr/syno/etc/ssl/ssl.key/server.key
     SSLEngine On
     SSLProxyEngine On
     ProxyRequests Off
     ProxyVia Off
    
       Order allow,deny
       Allow from all
    
    
     ProxyPass / http://localserveraddress:port/
     ProxyPassReverse / http://localserveraddress:port/
    
    
    

  8. It is possible to have multiple hostnames with ssl certificate even now with DSM 5.X. Also reverse proxying is working, at least did for me before upgrade to 5592.x. But i like letsencrypt addition.

     

    Nice addition in DSM 6 is mail station plus, but if i understood it wont be free to use.

    Support for many many file formats is great.

    Virtualization, but it also wont be free as i know.

    Cloud sync with option backup.

  9. Re-installed virtualbox and the problem is gone... strange!

     

    As an aside, does anyone know VirtualBox doesn't show up in the "Main Menu" in DSM?

    It looks like the config file says it should, but I get no icon, I have to go to package manager and click the link, or else just go to the url directly.

     

    Not a major issue, I just wondered why the icon wasn't showing in the "Main Menu"?

     

    Thanks :smile:

     

    for me from logs you posted before it looked like problem with access rights then i asked about reinstall virtualbox. about icon, strange, icon could be in menu as usual

×
×
  • Create New...