Make WordPress Core


Ignore:
Timestamp:
05/10/2010 08:17:12 PM (15 years ago)
Author:
nacin
Message:

Update IIS parameters.xml to reflect new config-sample values. also add salts. see #11523.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/iis/parameters.xml

    r12002 r14542  
    102102    type="TextFile"
    103103    scope="wordpress\\wp-config.php"
    104     match="putyourdbnamehere"
     104    match="database_name_here"
    105105    />
    106106</parameter>
     
    127127    type="TextFile"
    128128    scope="wordpress\\wp-config.php"
    129     match="usernamehere"
     129    match="username_here"
    130130    />
    131131</parameter>
     
    145145    type="TextFile"
    146146    scope="wordpress\\wp-config.php"
    147     match="yourpasswordhere"
     147    match="password_here"
    148148    />
    149149</parameter>
     
    287287</parameter>
    288288
     289<parameter
     290    name="Key5"
     291    friendlyName="Unique Salt for Passwords"
     292    description="Unique phrase used to strengthen your password hash."
     293    defaultValue="put your unique phrase here"
     294    tags="PHP"
     295    >
     296    <parameterValidation
     297    type="RegularExpression"
     298    validationString="^[^&#039;\\]+$"
     299    />
     300    <parameterEntry
     301    type="TextFile"
     302    match="(?&lt;=AUTH_SALT&#039;, &#039;)put your unique phrase here"
     303    scope="wordpress\\wp-config.php"
     304    />
     305</parameter>
     306
     307<parameter
     308    name="Key6"
     309    friendlyName="Unique Salt for Secure Passwords"
     310    description="Different unique phrase used to strengthen SSL password hashes."
     311    defaultValue="put your unique phrase here"
     312    tags="PHP"
     313    >
     314    <parameterValidation
     315    type="RegularExpression"
     316    validationString="^[^&#039;\\]+$"
     317    />
     318    <parameterEntry
     319    type="TextFile"
     320    scope="wordpress\\wp-config.php"
     321    match="(?&lt;=SECURE_AUTH_SALT&#039;, &#039;)put your unique phrase here"
     322    />
     323</parameter>
     324
     325<parameter
     326    name="Key7"
     327    friendlyName="Unique Salt for Authentication"
     328    description="Different unique phrase used to strengthen authentication."
     329    defaultValue="put your unique phrase here"
     330    tags="PHP"
     331    >
     332    <parameterValidation
     333    type="RegularExpression"
     334    validationString="^[^&#039;\\]+$"
     335    />
     336    <parameterEntry
     337    type="TextFile"
     338    scope="wordpress\\wp-config.php"
     339    match="(?&lt;=LOGGED_IN_SALT&#039;, &#039;)put your unique phrase here"
     340    />
     341</parameter>
     342
     343<parameter
     344    name="Key8"
     345    friendlyName="Second Unique Salt for Authentication"
     346    description="Another unique phrase used to strengthen authentication."
     347    defaultValue="put your unique phrase here"
     348    tags="PHP"
     349    >
     350    <parameterValidation
     351    type="RegularExpression"
     352    validationString="^[^&#039;\\]+$"
     353    />
     354    <parameterEntry
     355    type="TextFile"
     356    scope="wordpress\\wp-config.php"
     357    match="(?&lt;=NONCE_SALT&#039;, &#039;)put your unique phrase here"
     358    />
     359</parameter>
     360
    289361
    290362<!-- Set the correct path for the ACL based on the AppPath selected
Note: See TracChangeset for help on using the changeset viewer.