Changeset 14542 for branches/iis/parameters.xml
- Timestamp:
- 05/10/2010 08:17:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/iis/parameters.xml
r12002 r14542 102 102 type="TextFile" 103 103 scope="wordpress\\wp-config.php" 104 match=" putyourdbnamehere"104 match="database_name_here" 105 105 /> 106 106 </parameter> … … 127 127 type="TextFile" 128 128 scope="wordpress\\wp-config.php" 129 match="username here"129 match="username_here" 130 130 /> 131 131 </parameter> … … 145 145 type="TextFile" 146 146 scope="wordpress\\wp-config.php" 147 match=" yourpasswordhere"147 match="password_here" 148 148 /> 149 149 </parameter> … … 287 287 </parameter> 288 288 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="^[^'\\]+$" 299 /> 300 <parameterEntry 301 type="TextFile" 302 match="(?<=AUTH_SALT', ')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="^[^'\\]+$" 317 /> 318 <parameterEntry 319 type="TextFile" 320 scope="wordpress\\wp-config.php" 321 match="(?<=SECURE_AUTH_SALT', ')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="^[^'\\]+$" 335 /> 336 <parameterEntry 337 type="TextFile" 338 scope="wordpress\\wp-config.php" 339 match="(?<=LOGGED_IN_SALT', ')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="^[^'\\]+$" 353 /> 354 <parameterEntry 355 type="TextFile" 356 scope="wordpress\\wp-config.php" 357 match="(?<=NONCE_SALT', ')put your unique phrase here" 358 /> 359 </parameter> 360 289 361 290 362 <!-- Set the correct path for the ACL based on the AppPath selected
Note: See TracChangeset
for help on using the changeset viewer.