• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Restrict index file in wwwroot for user

R

rvdmeer

Guest
Hi guys,

Before asking my question I must say this isnt a plesk based question. Its an unix/linux permission question. Still, based on the experience i can say there are several unix professionals here who might be able to help me with this question.

We are sponsering a website and therefor created an subdomein. The customer is able to upload files on the subdomein. I would like to restrict his access to the index.html file.

I changed the permissions on the index.html file to:

-rw-r--r-- 1 root psacln 1009 Dec 17 13:34 index.html
I would say that this solves the problem because I restricted the user permissions on the index.html file. But still, if i'm connecting thru ftp, on his user login, i'm able to change/remove the file. I guess that the permissions are recursive from the home directory who has the permissions to upload.

Could someone tell me howto restrict the access for removing this file and recreating a new index.html file?

Thanks in advance.

Kind regards,
 
As long as this user does not know a lot about Linux, you could set the immutable bit (chattr +i) which should then make the file unchangeable even by root (until that bit is unset).
 
No problem Ronald, it seems that the older I get, the easier it is for my brain to follow the KISS principle. Probably due to having fewer brain cells.... LOL
 
chmod -w index.html

should work, i don't think they can change a read only file.
 
Back
Top