Hello Team, My Website is hosted on Digital Ocean. I am using WordPress with Ubuntu 22.04 Operating System. I want to put a js file on root. I am storing but file is auto deleting after Nginx reload or rebooting Droplet. Kindly give me proper solution to lock a file from Deletion.
Thank You.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
Where is that file stored at? If it is in the
/tmp
directory, I would recommend just changing the location so that the file does not get deleted in the first place.Besides that, you can make the file immutable by using the
chattr +i your_file
command, that way even the root user will not be able to delete the file.Best,
Bobby