मुझे केवल यह जानना चाहिए कि क्या ये अनुमति सही हैं:
site --> 775
site/default -->775
site/default/files --> 775
site/default/setting.php --> 555
मुझे केवल यह जानना चाहिए कि क्या ये अनुमति सही हैं:
site --> 775
site/default -->775
site/default/files --> 775
site/default/setting.php --> 555
जवाबों:
दरअसल परमिशन होनी चाहिए
sites -> 755
sites/default -> 755
sites/default/files -> 775
sites/default/settings.php -> 444
कुछ बेहतरीन विवरणों के लिए इस प्रश्न के शीर्ष 3 उत्तर देखें।
से Drupal के आधिकारिक पुस्तिका :
इसे एक फ़ाइल में कॉपी करें और इसे "fix-permissions.sh" नाम दें
#!/bin/bash
if [ $(id -u) != 0 ]; then
printf "This script must be run as root.\n"
exit 1
fi
drupal_path=${1%/}
drupal_user=${2}
httpd_group="${3:-www-data}"
# Help menu
print_help() {
cat <<-HELP
This script is used to fix permissions of a Drupal installation
you need to provide the following arguments:
1) Path to your Drupal installation.
2) Username of the user that you want to give files/directories ownership.
3) HTTPD group name (defaults to www-data for Apache).
Usage: (sudo) bash ${0##*/} --drupal_path=PATH --drupal_user=USER --httpd_group=GROUP
Example: (sudo) bash ${0##*/} --drupal_path=/usr/local/apache2/htdocs --drupal_user=john --httpd_group=www-data
HELP
exit 0
}
# Parse Command Line Arguments
while [ $# -gt 0 ]; do
case "$1" in
--drupal_path=*)
drupal_path="${1#*=}"
;;
--drupal_user=*)
drupal_user="${1#*=}"
;;
--httpd_group=*)
httpd_group="${1#*=}"
;;
--help) print_help;;
*)
printf "Invalid argument, run --help for valid arguments.\n";
exit 1
esac
shift
done
if [ -z "${drupal_path}" ] || [ ! -d "${drupal_path}/sites" ] || [ ! -f "${drupal_path}/core/modules/system/system.module" ] && [ ! -f "${drupal_path}/modules/system/system.module" ]; then
printf "Please provide a valid Drupal path.\n"
print_help
exit 1
fi
if [ -z "${drupal_user}" ] || [ $(id -un ${drupal_user} 2> /dev/null) != "${drupal_user}" ]; then
printf "Please provide a valid user.\n"
print_help
exit 1
fi
cd $drupal_path
printf "Changing ownership of all contents of "${drupal_path}":\n user => "${drupal_user}" \t group => "${httpd_group}"\n"
chown -R ${drupal_user}:${httpd_group} .
printf "Changing permissions of all directories inside "${drupal_path}" to "rwxr-x---"...\n"
find . -type d -exec chmod u=rwx,g=rx,o= '{}' \;
printf "Changing permissions of all files inside "${drupal_path}" to "rw-r-----"...\n"
find . -type f -exec chmod u=rw,g=r,o= '{}' \;
printf "Changing permissions of "files" directories in "${drupal_path}/sites" to "rwxrwx---"...\n"
cd sites
find . -type d -name files -exec chmod ug=rwx,o= '{}' \;
printf "Changing permissions of all files inside all "files" directories in "${drupal_path}/sites" to "rw-rw----"...\n"
printf "Changing permissions of all directories inside all "files" directories in "${drupal_path}/sites" to "rwxrwx---"...\n"
for x in ./*/files; do
find ${x} -type d -exec chmod ug=rwx,o= '{}' \;
find ${x} -type f -exec chmod ug=rw,o= '{}' \;
done
echo "Done settings proper permissions on files and directories"
अब इस स्क्रिप्ट को इस रूप में चलाएं: sudo bash fix-permissions.sh --drupal_path = आपका / drupal / path --drupal_user = your_user_name
आहा! आपकी अनुमति स्वतः तय हो गई है।
इस प्रकार मैंने अपने ड्रुपल उदाहरण के लिए अनुमतियाँ निर्धारित करने का निर्णय लिया:
mkdir sites/default/files
chgrp -Rv apache sites/default/files
chmod 2775 sites/default/files
हम अपने chmod कमांड में 2775 का उपयोग करके ऐसा करते हैं। 2 का मतलब है कि इस निर्देशिका में बनाई गई किसी भी नई फ़ाइल के लिए समूह आईडी को संरक्षित किया जाएगा। इसका मतलब यह है कि अपाचे हमेशा किसी भी फाइल पर समूह होगा, जिससे यह सुनिश्चित होगा कि वेब सर्वर और उपयोगकर्ता दोनों को हमेशा इस निर्देशिका में रखी गई किसी भी नई फाइल के लिए लिखने की अनुमति होगी। पहले 7 का मतलब है कि मालिक (उदाहरण) आर (रीड) डब्ल्यू (लिखें) और एक्स (एक्सक्यूट) किसी भी फाइल को यहां कर सकते हैं। दूसरे 7 का मतलब है कि समूह (www-data) भी इस निर्देशिका में किसी भी फाइल को RW और X कर सकता है। अंत में, 5 का मतलब है कि अन्य उपयोगकर्ता आर और एक्स फाइल कर सकते हैं, लेकिन लिख नहीं सकते हैं।
एक और बिंदु आपकी सेटिंग के लिए सही अनुमतियाँ सेट करना है
chmod 444 sites/default/settings.php
अन्य अनुमतियां डिफ़ॉल्ट होनी हैं।
पूरा Drupal अधिष्ठापन गाइड: http://itvictories.com/node/21
चयनित उत्तर काफी सही नहीं है, खासकर जब वहां कुछ अज्ञात हैं, हालांकि एलेक्सा ने इसे काफी विस्तार से समझाया, और यह बहुत समान दृष्टिकोण है जो मैं ड्रुपल साइटों पर लेता हूं।
इसके अलावा, मुझे लगा कि मैं अपनी स्क्रिप्ट यहां भी साझा करूंगा, लेकिन एक ड्रुपल मॉड्यूल के रूप में, जो मैंने कुछ समय पहले बनाई है। आप इसे ~/.drush
उपनिर्देशिका में रख सकते हैं और drush file-permissions
किसी भी कार्यशील Drupal साइट उपनिर्देशिका में रहते हुए निष्पादित कर सकते हैं।
यह आपकी Drupal साइट को बूटस्ट्रैप करता है file_private_path
, file_public_path
Apache उपयोगकर्ता और समूह को सही करने के लिए उन्हें जाँचता है , और उन्हें सेट करता है। अपाचे उपयोगकर्ता / समूह को स्वचालित रूप से निर्धारित किया जा रहा है, इसलिए यह उपयोगकर्ता पर निर्भर नहीं है कि वे उन्हें मैन्युअल रूप से निर्दिष्ट करें या उन्हें स्क्रिप्ट फ़ाइल में हार्ड-कोडित करें।
मॉड्यूल पेज: https://www.drupal.org/project/file_permissions
जैसा कि अन्य लोगों ने उल्लेख किया है कि सही अनुमति है
सभी सुधारात्मक -> 755
सभी फाइलें -> 755
साइटें / डिफ़ॉल्ट -> 755 (यह निर्देशिका इस नियम को ओवरराइड करती है)
साइट्स / डिफ़ॉल्ट / फाइलें -> 775 (इस निर्देशिका के लिए नियम को ओवरराइड करें और यह सामग्री)
साइटों / डिफ़ॉल्ट / सेटिंग्स। php -> 444 (इस फ़ाइल के लिए नियम को ओवरराइड करें)
उल्लिखित नियमों को प्राप्त करने के लिए उपयुक्त आदेश निम्नलिखित में आता है, आपकी Drupal वेबसाइट के मूल में
find . -type f | xargs chmod 644
find . -type d | xargs chmod 755
chmod 444 sites/default/settings.php
chmod 775 -R sites/default/files