mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
- [DOC] add session.entropy* support to windows
This commit is contained in:
parent
9badd4f0fb
commit
f8b17007e0
@ -6,7 +6,7 @@ rewriter uses arg_seperator.output for modifying URLs
|
||||
session.use_cookies=0
|
||||
session.cache_limiter=
|
||||
session.use_trans_sid=1
|
||||
arg_separator.output="&"
|
||||
arg_separator.output=&
|
||||
session.name=PHPSESSID
|
||||
session.serialize_handler=php
|
||||
session.save_handler=files
|
||||
|
@ -1586,6 +1586,9 @@ session.entropy_length = 0
|
||||
|
||||
; Specified here to create the session id.
|
||||
; http://php.net/session.entropy-file
|
||||
; On systems that don't have /dev/urandom /dev/arandom can be used
|
||||
; On windows, setting the entropy_length setting will activate the
|
||||
; Windows random source (using the CryptoAPI)
|
||||
;session.entropy_file = /dev/urandom
|
||||
session.entropy_file =
|
||||
|
||||
|
@ -1594,8 +1594,10 @@ session.entropy_length = 0
|
||||
|
||||
; Specified here to create the session id.
|
||||
; http://php.net/session.entropy-file
|
||||
; On systems that don't have /dev/urandom /dev/arandom can be used
|
||||
; On windows, setting the entropy_length setting will activate the
|
||||
; Windows random source (using the CryptoAPI)
|
||||
;session.entropy_file = /dev/urandom
|
||||
session.entropy_file =
|
||||
|
||||
; http://php.net/session.entropy-length
|
||||
;session.entropy_length = 16
|
||||
|
Loading…
Reference in New Issue
Block a user