Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Kubitomakita

Pages: [1]
1
I figured it out.

You have to disable apache listening on 443 in /usr/local/apache/conf.d/vhosts-ssl.conf (for example by removing it's content. BACKUP THIS FILE FIRST).

Then you have to add in the NGINX configuration file something like:

Code: [Select]
listen YOUR_IP:443 ssl;
ssl_certificate path_to/cert.pem;
ssl_certificate_key path_to/privkey.pem;

2
SSL / Re: Having problems with Nginx and SSL
« on: July 07, 2016, 06:57:55 AM »
Igor, everyone is always saying that "I should know how to do this". Maybe I should but there's lack of any informations how to deal with it if NGINX is set as a reverse proxy.

Please could anyone write short list of hints how to start with this? I tried to do it based on the Ubuntu/NGINX guide but apparently there's a conflict so nginx couldn't bind to :443 and I'm stuck.

3
madbradjohnson could you write short guide how to make NGINX listen on :443, please?

I tried to do it but it couldn't bind to this address.

4
Backup / Re: rsync module is read only
« on: January 16, 2016, 09:32:43 AM »
Thanks for the tip.

I have created special user for the backups.

Just checked the admin user and the same thing. SSH ok, directories created, no files transferred with error "module is readonly".

root user can't log in via SSH. His home directory is /root. I'm afraid if changing it will not break my DSM and I don't want to store backups there.

Checked chmods, checked home directories permission and seems to be ok there. I have no idea what is going on.

PS. Chmod 755 and chown to admin on cwp_remote directory didn't helped.

5
Backup / rsync module is read only
« on: January 15, 2016, 08:59:47 PM »
Hi,

I have set the account and connection to my Synology NAS station. Server is sucessfully connnecting to it but it  can't really save any backup file (but directories are made!).

Here's the output of the backup command:

Code: [Select]
ERROR: module is read only
rsync error: syntax or usage error (code 1) at main.c(1034) [Receiver=3.0.9]
rsync: connection unexpectedly closed (9 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(600) [sender=3.0.6]
sending incremental file list

Is this something on my server or on my NAS? I found a tip to set the relative directory in rsync configuration file but there's nothing like this on my server.

Thanks for any help

Pages: [1]