Linux下的Apache與PHP安全設定技巧

來源:互聯網
上載者:User

(1) safe_mode: 以安全模式運行php;

在php.ini檔案中使用如下
safe_mode = On (使用安全模式)
safe_mode = Off (關閉安全模式)
在apache的httpd.conf中VirtualHost的相應設定方法
php_admin_flag safe_mode On (使用安全模式)
php_admin_flag safe_mode Off (關閉安全模式)
或者:
php_admin_value safe_mode 1 (使用安全模式)
php_admin_value safe_mode 0 (關閉安全模式)

(2) safe_mode_include_dir: 無需UID/GID檢查的目錄;

(3) open_basedir: 將使用者可操作的檔案限制在某目錄下;

a、在Apache的httpd.conf中Directory的相應設定方法:
php_admin_value open_basedir /usr/local/apache/htdocs/:/tmp/
b、在php.ini中設定open_basedir = .:/tmp/, 這個設定表示允許
訪問目前的目錄(即PHP檔案所在目錄)和/tmp/目錄。

(4) disable_functions:設定禁用函數;

典型的安全性配置
disable_functions = shell_exec,system,exec,passthru,show_source,get_cfg_var,dl
若允許使用者偵錯工具,則配置如下:
disable_functions = shell_exec,system,exec,passthru
(5) register_globals: 禁止註冊全域變數;

register_globals = On (自動註冊為全域變數)
register_globals = Off (不可註冊為全域變數)
(6) magic_quotes_gpc: 令敏感字元轉義
magic_quotes_gpc = On
magic_quotes_gpc = Off
在Apache的httpd.conf中VirtualHost的相應設定方法:
php_admin_flag magic_quotes_gpc on
或者:
php_admin_value magic_quotes_gpc 1

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.