Eugeny / ajenti-v

Virtual Hosting addon for Ajenti
ajenti.org/#product-ajenti-v
MIT License
225 stars 79 forks source link

suggest to improve vsftp and others #66

Open ratmz opened 10 years ago

ratmz commented 10 years ago

This is my suggest for improve vsftp on ajenti.

  1. User can make custom configuration like "nginx.custom.d" because If we do edit the /etc/vsftpd.conf it will write again to default config. Example: using SSL with custom certificate.
  2. I don't like using chmod 755 for file and 775 on folder. I prefer suing 644 on file and 755 on folder. (should be integrating to default config)
  3. If root write/put file on website root folder, it cannot be delete when using ftp, must be manual delete using rm in console. I think this is must be improve too

Others A. Ajenti must have Full documentation about instalation, how to use custom configuration on nginx, php and folder nginx.custom.d. , etc Sadly I found tutorial not from ajenti, but other people.

B. I'm use manual emailserver and MTA (postfix and dovecot) rather than using ajenti-v mail. Because I can use my custom database and custom configuration.

C. If we use custom php on website, please ajenti do not using another default parameter: example: try_files $uri =404; fastcgi_split_path_info ^(.+.php)(/.+)$; (2 line above I put on custom php on ajenti control panel)

    fastcgi_index index.php;
    include fcgi.conf;
    fastcgi_pass unix:/var/run/php-fcgi-tokokaboa-php-fcgi-0.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

(4 lines above is auto generated by ajenti)

Because, I want to use another fastcgi_param statement.

Thank you,

Best regards, Dave

jadsonlourenco commented 10 years ago

Agreed!

Eugeny commented 10 years ago

Could you please explain C further? What do you mean by "do not using another default parameter"?

ratmz commented 10 years ago

Hello, Because I need more freedom to add my parameter by myself not ajenti suggest or auto generate. So by now, I just only install ajenti without ajenti-V for custom parameter on php and nginx

Thanks, Dave