Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2017
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.12 KB | None | 0 0
  1. # Updated by Siege %_VERSION%, %_DATE%
  2. # Copyright 2000-2016 by %_AUTHOR%
  3. #
  4. # Siege configuration file -- edit as necessary
  5. # For more information about configuring and running this program,
  6. # visit: http://www.joedog.org/
  7.  
  8. #
  9. # Variable declarations. You can set variables here for use in the
  10. # directives below. Example:
  11. # PROXY = proxy.joedog.org
  12. # Reference variables inside ${} or $(), example:
  13. # proxy-host = ${PROXY}
  14. #
  15. #
  16. # You can also reference ENVIRONMENT variables without actually
  17. # declaring them, example:
  18. #
  19. # logfile = $(HOME)/var/siege.log
  20.  
  21. #
  22. # Verbose mode: With this feature enabled, siege will print the
  23. # result of each transaction to stdout. (Enabled by default)
  24. #
  25. # ex: verbose = true|false
  26. #
  27. verbose = true
  28.  
  29. #
  30. # Color mode: This option works in conjuction with verbose mode.
  31. # It tells siege whether or not it should display its output in
  32. # color-coded output. (Enabled by default)
  33. #
  34. # ex: color = on | off
  35. #
  36. color = on
  37.  
  38.  
  39. #
  40. # Quiet mode: With this featured enabled, siege goes mostly silent.
  41. # It will display the opening message and the final stats but nothing
  42. # else. If you enable quiet mode with -g/--get then siege will be
  43. # completely silent (ideal for scripting). In order to gauge the
  44. # success of the run, you'll have to rely on the exit status:
  45. #
  46. # #!/bin/sh
  47. #
  48. # SIEGE=/home/jdfulmer/bin/siege
  49. #
  50. # $SIEGE -g https://www.joedog.org/
  51. # if [ $? -eq 0 ] ; then
  52. # echo "Whoo hoo!"
  53. # else
  54. # echo "D'oh!"
  55. # fi
  56. #
  57. # This is the same as running siege with -q/--quiet
  58. #
  59. # Ex: quiet = true
  60. #
  61. quiet = false
  62.  
  63. #
  64. # Show logfile location. By default, siege displays the logfile
  65. # location at the end of every run when logging. You can turn this
  66. # message off with this directive.
  67. #
  68. # ex: show-logfile = false
  69. #
  70. show-logfile = true
  71.  
  72. #
  73. # Default logging status, true turns logging on.
  74. # ex: logging = true|false
  75. #
  76. logging = false
  77.  
  78. #
  79. # Logfile, the default siege logfile is $PREFIX/var/siege.log This
  80. # directive allows you to choose an alternative log file. Environment
  81. # variables may be used as shown in the examples:
  82. #
  83. # ex: logfile = /home/jeff/var/log/siege.log
  84. # logfile = ${HOME}/var/log/siege.log
  85. # logfile = ${LOGFILE}
  86. #
  87. # logfile =
  88.  
  89.  
  90. #
  91. # Get method: Use this directive to select an HTTP method for siege
  92. # when it's run in get mode, i.e., siege -g/--get URL. You may select
  93. # GET or HEAD. The default method is HEAD. As expected HEAD prints just
  94. # the headers and GET prints the entire page.
  95. #
  96. # NOTE: This only applies when siege is invoked with -g/--get. All
  97. # other requests methods will be made on the basis of the URL.
  98. #
  99. # example: gmethod = GET
  100. #
  101. gmethod = HEAD
  102.  
  103. #
  104. # Parser
  105. # This directive allows you to turn on the html parser. With this
  106. # feature enabled, siege will harvest resources like style sheets,
  107. # images, javascript, etc. and make additional requests for those
  108. # items.
  109. #
  110. # HTML parsing was added to version 4.0.0 It is enabled by default.
  111. # When the parser is enabled, care must be given to other features.
  112. # For example, we allow to set accept-encoding to anything you'd like
  113. # but if you want to parse those pages, then you MUST set the encoding
  114. # to a supported one.
  115. #
  116. # With the default options set, you should be able to enable the parser
  117. # with success.
  118. #
  119. # Use this feature to enable it. (true = on, false = off)
  120. #
  121. # Example: parser = true
  122. #
  123. parser = false
  124.  
  125. #
  126. # No-follow
  127. # When the parser is enabled, siege will grab HTML resources within
  128. # the page and download those elements as well. This directive allows
  129. # you to specify hostnames to which you do NOT want to make requests.
  130. #
  131. # You can repeat this directive as many times as you like. Enter one
  132. # per line with 'key = value' syntax.
  133. #
  134. # Example: nofollow = www.joedog.org
  135. #
  136. nofollow = ad.doubleclick.net
  137. nofollow = pagead2.googlesyndication.com
  138. nofollow = ads.pubsqrd.com
  139. nofollow = ib.adnxs.com
  140.  
  141. #
  142. # CSV Verbose format: with this option, you can choose to format
  143. # verbose output in traditional siege format or comma separated
  144. # format. The latter will allow you to redirect output to a file
  145. # for import into a spread sheet, i.e., siege > file.csv
  146. #
  147. # ex: csv = true|false (default false)
  148. #
  149. # csv = true
  150.  
  151. #
  152. # Timestamp format: with this option, you can choose to print a
  153. # timestamp each line of output.
  154. #
  155. # example: timestamp = true|false (default false)
  156. #
  157. # [Sat, 2010-11-20 10:39:13] HTTP/1.1 200 0.12 secs: 4003 bytes ==> /
  158. #
  159. # timestamp = true
  160.  
  161. #
  162. # Full URL verbose format: By default siege displays the URL path and
  163. # not the full URL. With this option, you can instruct siege to show
  164. # the complete URL.
  165. #
  166. # ex: fullurl = true|false (default false)
  167. #
  168. # HTTP/1.1 301 0.34 secs: 311 bytes ==> GET https://www.joedog.org/
  169. #
  170. # fullurl = true
  171.  
  172. #
  173. # Display id: in verbose mode, display the siege user id associated
  174. # with the HTTP transaction information
  175. #
  176. # ex: display-id = true|false
  177. #
  178. # 100) HTTP/1.1 200 0.31 secs: 35338 bytes ==> GET /images/bbc.jpg
  179. #
  180. # display-id =
  181.  
  182. #
  183. # Limit: This directive places a cap on the number of threads siege
  184. # will generate. The default value is 255 which corresponds with
  185. # apache's default value. If you schedule more clients than apache is
  186. # configured to handle, then requests will back up and you will make a
  187. # mess. DO NOT INCREASE THIS NUMBER UNLESS YOU CONFIGURED APACHE TO
  188. # HANDLE MORE THAN 256 SIMULTANEOUS REQUESTS.
  189. #
  190. # ex: limit = 1023 (default is 255)
  191. #
  192. limit = 50
  193.  
  194. #
  195. # HTTP protocol. Options HTTP/1.1 and HTTP/1.0. Some webservers have
  196. # broken implementation of the 1.1 protocol which skews throughput
  197. # evaluations. If you notice some siege clients hanging for extended
  198. # periods of time, change this to HTTP/1.0
  199. #
  200. # ex: protocol = HTTP/1.1
  201. # protocol = HTTP/1.0
  202. #
  203. protocol = HTTP/1.1
  204.  
  205. #
  206. # Chunked encoding is required by HTTP/1.1 protocol but siege allows
  207. # you to turn it off as desired. This feature is generally more useful
  208. # to siege developers than siege users. You should probably leave it
  209. # set to 'true'
  210. #
  211. # ex: chunked = true
  212. #
  213. chunked = true
  214.  
  215. #
  216. # Cache revalidation. Siege supports cache revalidation for both ETag
  217. # and Last-modified headers. If a copy is still fresh, the server
  218. # responds with 304. While this feature is required for HTTP/1.1, it
  219. # may not be welcomed for load testing. We allow you to breach the
  220. # protocol and turn off caching
  221. #
  222. # HTTP/1.1 200 0.00 secs: 2326 bytes ==> /apache_pb.gif
  223. # HTTP/1.1 304 0.00 secs: 0 bytes ==> /apache_pb.gif
  224. # HTTP/1.1 304 0.00 secs: 0 bytes ==> /apache_pb.gif
  225. #
  226. # Siege also supports Cache-control headers. Consider this server
  227. # response: Cache-Control: max-age=3
  228. # That tells siege to cache the file for three seconds. While it
  229. # doesn't actually store the file, it will logically grab it from
  230. # its cache. In verbose output, it designates a cached resource
  231. # with (c):
  232. #
  233. # HTTP/1.1 200 0.25 secs: 159 bytes ==> GET /expires/
  234. # HTTP/1.1 200 1.48 secs: 498419 bytes ==> GET /expires/Otter_in_Southwold.jpg
  235. # HTTP/1.1 200 0.24 secs: 159 bytes ==> GET /expires/
  236. # HTTP/1.1 200(C) 0.00 secs: 0 bytes ==> GET /expires/Otter_in_Southwold.jpg
  237. #
  238. # NOTE: with color enabled, cached URLs appear in green
  239. #
  240. # ex: cache = true
  241. #
  242. cache = false
  243.  
  244. #
  245. # Connection directive. Options "close" and "keep-alive" Starting with
  246. # version 2.57, siege implements persistent connections in accordance
  247. # to RFC 2068 using both chunked encoding and content-length directives
  248. # to determine the page size.
  249. #
  250. # To run siege with persistent connections set this to keep-alive.
  251. #
  252. # CAUTION: Use the keep-alive directive with care.
  253. # DOUBLE CAUTION: This directive does not work well on HPUX
  254. # TRIPLE CAUTION: We don't recommend you set this to keep-alive
  255. # ex: connection = close
  256. # connection = keep-alive
  257. #
  258. connection = keep-alive
  259.  
  260. #
  261. # Default number of simulated concurrent users. This feature
  262. # corresponds with the -c NUM / --concurrent=NULL command line
  263. # argument. The command line takes precedent over this directive.
  264. #
  265. # ex: concurrent = 50
  266. #
  267. concurrent = 25
  268.  
  269. #
  270. # Default duration of the siege. The right hand argument has a modifier
  271. # which specifies the time units, H=hours, M=minutes, and S=seconds. If
  272. # a modifier is not specified, then minutes are assumed.
  273. #
  274. # NOTE: The command line argument -t5m / --time=5m takes precedence
  275. # over this directive
  276. #
  277. # ex: time = 50M
  278. #
  279. time = 5M
  280.  
  281. #
  282. # Repetitions. The length of siege may be specified in client reps
  283. # rather than a time duration. Instead of specifying a time span,
  284. # you can tell each siege instance to hit the server X number of times.
  285. # So if you chose 'reps = 20' and you've selected 10 concurrent users,
  286. # then siege will hit the server 200 times.
  287. #
  288. # NOTE: The command line argument -r 5 / --reps=5 / --reps=once takes
  289. # precedence over this directive
  290. #
  291. # ex: reps = 20
  292. #
  293. # reps =
  294.  
  295. #
  296. # URLs file: Set at configuration time, the default URLs file is
  297. # PREFIX/etc/urls.txt So if you configured the siege build with
  298. # --prefix=/usr/local then the urls.txt file is installed in
  299. # /usr/local/etc/urls.txt. Use the "file = " directive to configure
  300. # an alternative URLs file. You may use environment variables
  301. # as shown in the examples below:
  302. #
  303. # ex: file = /export/home/jdfulmer/MYURLS.txt
  304. # file = $HOME/etc/urls.txt
  305. # file = $URLSFILE
  306. #
  307. # NOTE: The command line -f FILE / --file=FILE takes precedence over
  308. # this directive
  309. #
  310. # file =
  311.  
  312. #
  313. # Default URL, this is a single URL that you want to test. This is
  314. # usually set at the command line with the -u option. When used, this
  315. # option overrides the urls.txt (-f FILE/--file=FILE) option. You will
  316. # HAVE to comment this out for in order to use the urls.txt file option.
  317. #
  318. # NOTE: you may do the same thing by passing a URL to siege at the
  319. # command line:
  320. # $ siege -c10 -r10 "www.joedog.org/"
  321. #
  322. # Generally, it's a good idea to wrap a command line URL in quotes
  323. #
  324. # ex: url = https://shemp.whoohoo.com/docs/index.jsp
  325. #
  326. # url =
  327.  
  328. #
  329. # Default delay between each request by a single thread. This value
  330. # is not included in the request time. If a thread sleeps for two
  331. # seconds then completes a 0.5 second request, the time of the request
  332. # is 0.5 seconds, not 2.5 seconds.
  333. #
  334. # NOTE: the command line -d NUM / --delay=NULL takes precedent over
  335. # this directive
  336. #
  337. # ex: delay = 1.5
  338. # delay = 5
  339. #
  340. delay = 0.5
  341.  
  342. #
  343. # Connection timeout value. Set the value in seconds for socket
  344. # connection timeouts. The default value is 30 seconds.
  345. #
  346. # ex: timeout = 30
  347. #
  348. # timeout =
  349.  
  350. #
  351. # Session expiration: This directive allows you to delete all cookies
  352. # after you pass through the URLs. This means siege will grab a new
  353. # session with each run through its URLs. The default value is false.
  354. #
  355. # ex: expire-session = true
  356. #
  357. # expire-session =
  358.  
  359. #
  360. # Cookie support: by default siege accepts cookies. This directive is
  361. # available to disable that support. Set cookies to 'false' to refuse
  362. # cookies. Set it to 'true' to accept them. The default value is true.
  363. # If you want to maintain state with the server, then this MUST be set
  364. # to true.
  365. #
  366. # ex: cookies = false
  367. #
  368. # cookies =
  369.  
  370. #
  371. # Failures: This is the number of total connection failures allowed
  372. # before siege aborts. Connection failures (timeouts, socket failures,
  373. # etc.) are combined with 400 and 500 level errors in the final stats,
  374. # but those errors do not count against the abort total. If you set
  375. # this total to 10, then siege will abort after ten socket timeouts,
  376. # but it will NOT abort after ten 404s. This is designed to prevent a
  377. # run-away mess on an unattended siege.
  378. #
  379. # The default value is 1024
  380. #
  381. # ex: failures = 50
  382. #
  383. # failures =
  384.  
  385. #
  386. # Internet simulation. If true, siege clients will hit the URLs in the
  387. # urls.txt file randomly, thereby simulating internet usage. If false,
  388. # siege will run through the urls.txt file in order from first to last
  389. # and back again.
  390. #
  391. # ex: internet = true
  392. #
  393. internet = false
  394.  
  395. #
  396. # Default benchmarking value, If true, there is NO delay between server requests,
  397. # siege runs as fast as the web server and the network will let it. Set this to
  398. # false for load testing.
  399. #
  400. # ex: benchmark = true
  401. #
  402. benchmark = false
  403.  
  404. #
  405. # User-agent: With this directive you can set the siege user-agent The default
  406. # agent is: JoeDog/1.40 [en] (X11; I; Siege #.##) With this directive, you can
  407. # mimic various browsers or you can make up something fun. Limey, our English
  408. # bulldog, was recovering from minor surgery at the time we added this feature
  409. # so we like to dedicate the example in his honor:
  410. #
  411. # ex: user-agent = Limey The Bulldog
  412. #
  413. # Other examples harvested from our logs:
  414. # Chrome: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36k
  415. # IE 6: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)
  416. # IE 7: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)
  417. # IE 8: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
  418. # IE 9: Mozilla/5.0 (MSIE 9.0; Windows NT 6.1; Trident/5.0)
  419. # IE 10: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)
  420. # FF 3.6: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.4410) Gecko/20110902 Firefox/3.6
  421. # FF 9: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20100101 Firefox/9.0
  422. # Safari: Mozilla/5.0 (Windows; U; Windows NT 6.1; tr-TR) AppleWebKit/533.20.25 Version/5.0.4 Safari/533.20.27
  423. # Opera: Opera/9.80 (Windows NT 6.1; U; es-ES) Presto/2.9.181 Version/12.00
  424. # iPhone: Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_2 like Mac OS X; en-us) Version/5.0.2 Mobile/8H7 Safari/6533.18.5
  425. # Android: Mozilla/5.0 (Linux; U; Android 2.3; en-us) AppleWebKit/999+ (KHTML, like Gecko) Safari/999.9
  426. # Kindle: Mozilla/5.0 (Linux; U; en-US) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) Version/4.0 Kindle/3.0
  427. # Goolge: Googlebot/2.1 (+http://www.googlebot.com/bot.html)
  428. # Yahoo: Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
  429. #
  430. # user-agent =
  431.  
  432. #
  433. # Accept-encoding. This option allows you to report to the server the
  434. # various content-encodings you support. If you're not using HTML parser
  435. # (parser = false), then you can specify any encoding. When the parser is
  436. # disabled, siege just reads the content then immediately discards it.
  437. # However, if you use the parser, then you MUST set a supported content
  438. # encoder. Currently, siege supports two: deflate and gzip.
  439. #
  440. # NOTE: We plan to add support for brotli and bzip2; you can hasten
  441. # that effort by showing us some love:
  442. #
  443. #
  444. # ex: accept-encoding =
  445. # accept-encoding = gzip
  446. # accept-encoding = deflate
  447. # accept-encoding = gzip;deflate
  448. accept-encoding = gzip;deflate
  449.  
  450. #
  451. # URL escaping was first added to version 3.0.3. It was considered
  452. # experimental until version 3.0.9 when it was turned on by default.
  453. #
  454. # This feature remains in siege as a mechanism to turn off escape
  455. # encoding. Here is an example of two URLs. The first has spaces
  456. # included in the file name and in the second those spaces were
  457. # encoded to %20.
  458. #
  459. # http://www.joedog.org/jukebox.php?band=the days of new
  460. # http://www.joedog.org/jukebox.php?band=the%20days%20of%20the%20new
  461. #
  462. # ex: url-escaping = false
  463. #
  464. url-escaping = true
  465.  
  466. #
  467. # WWW-Authenticate credentials. Currently siege supports two types
  468. # of HTTP authentication: digest and basic. It has partial support for
  469. # Microsoft's NTLM but in practice that only works with the -g/--get
  470. # option. (as of siege 3.1.1)
  471. #
  472. # When siege makes a request for a page that requires user authentication,
  473. # it will search its logins for a matching realm. If it finds credentials
  474. # for a realm, it will attempt to login with that username and password.
  475. #
  476. # If it fails to match the realm, it will use its default login credentials
  477. # (which are designated with the keyword "all" or no specified realm.
  478. #
  479. # If you do not supply a realm, then it will default to "all" which instructs
  480. # siege to send as default.
  481. #
  482. # You may enter many logins with each on its own separate line. The only
  483. # limitation is memory and realm name. You can't use the same realm name
  484. # more than once.
  485. #
  486. # ex: login = jdfulmer:topsecret:Admin
  487. # login = jeff:supersecret:all
  488. # login = jeff:supersecret
  489. #
  490. # login =
  491.  
  492. #
  493. # Login URL. This feature was designed to provide a login url in order
  494. # to kick off a session with form-based authentication. If this directive
  495. # has a value, then every siege client will make a request to it BEFORE it
  496. # uses its list of URLs.
  497. #
  498. # NOTE: siege will only make this request once. After it's hit this URL
  499. # it will not request it again until its next start-up.
  500. #
  501. # ex: login-url = http://eos.joedog.org/login.jsp POST name=jeff&pass=foo
  502. #
  503. # Starting with version 2.69, siege can make multiple login request on a
  504. # thread-by-thread basis. As each thread is created it grab the next unused
  505. # login URL in the list. If you schedule more threads than login-urls, new
  506. # threads will wrap back around and loop back through the list.
  507. #
  508. # ex: login-url = http://www.haha.com/login.php?name=homer&pass=whoohoo
  509. # login-url = http://www.haha.com/login.php?name=marge&pass=ohhomie
  510. # login-url = http://www.haha.com/login.php?name=bart&pass=eatMyShorts
  511. #
  512. # login-url =
  513.  
  514. #
  515. # FTP login - There are two ways to login to an ftp server with siege. You
  516. # can use this directive to set login credentials or you can set them in a
  517. # URL in RFC-1738 format: ftp://user:pass@host.com/ink.jpg
  518. #
  519. # The format for this directive is USER:PASS:HOST separated by colon ':'
  520. # The host field is optional. If you don't set a host, then siege will send
  521. # the same user:pass to every FTP server. You may use this directive MULTIPLE
  522. # times. Siege will store each instance in memory and send the appropriate
  523. # credentials at login time depending on the hostname in the URL.
  524. #
  525. # ex: ftp-login: jdfulmer:whoohoo:ftp.joedog.org
  526. # ftp-login: jdfulmer:password
  527. #
  528. # ftp-login =
  529.  
  530. #
  531. # FTP unique - This directive determines whether siege will upload files with
  532. # the same name (and therefore overwrite whatever is on disk) or upload files
  533. # each with a unique name. If true, siege will rewrite the file name with a
  534. # timestamp in its name, i.e., p.jpg => p-3086060432.jpg
  535. #
  536. # The default value is true.
  537. #
  538. # ex: unique = false
  539. #
  540. unique = true
  541.  
  542. #
  543. # SSL-cert: This optional feature allows you to specify a path to a client
  544. # certificate. It is not neccessary to specify a certificate in order to use
  545. # https. If you don't know why you would want one, then you probably don't need
  546. # it. Use openssl to generate a certificate and key with the following command:
  547. #
  548. # $ openssl req -nodes -new -days 365 -newkey rsa:1024 -keyout key.pem -out cert.pem
  549. #
  550. # Specify a path to cert.pem as follows:
  551. # ex: ssl-cert = /home/jeff/.certs/cert.pem
  552. #
  553. # ssl-cert =
  554.  
  555. #
  556. # SSL-key: Use this option to specify the key you generated with the command
  557. # above. ex: ssl-key = /home/jeff/.certs/key.pem You may actually skip this
  558. # option and combine both your cert and your key in a single file:
  559. # $ cat key.pem > client.pem
  560. # $ cat cert.pem >> client.pem
  561. # Now set the path for ssl-cert:
  562. # ex: ssl-cert = /home/jeff/.certs/client.pem
  563. # (in this scenario, you comment out ssl-key)
  564. #
  565. # ssl-key =
  566.  
  567. #
  568. # SSL-timeout: This option sets a connection timeout for the ssl library
  569. # ex: ssl-timeout = 30
  570. #
  571. # ssl-timeout =
  572.  
  573. #
  574. # SSL-ciphers
  575. # You can use this feature to select a specific ssl cipher for HTTPs. To
  576. # view the ones available with your library run the following command:
  577. #
  578. # $ openssl ciphers
  579. #
  580. # ex: ssl-ciphers = EXP-RC4-MD5
  581. #
  582. # ssl-ciphers =
  583.  
  584. #
  585. # Proxy Host: You can use siege to test a proxy server but you need to
  586. # configure it to use one. You'll need to name a proxy host and the port
  587. # it's listening on. The settings are proxy-host and proxy-port. The
  588. # following example shows how to use them:
  589. #
  590. # ex: proxy-host = proxy.joedog.org
  591. # proxy-port = 3123
  592. #
  593. # proxy-host =
  594. # proxy-port =
  595.  
  596. #
  597. # Proxy-Authenticate: When siege hits a proxy server which requires
  598. # username and password authentication, it will this username and
  599. # password to the server. The format is username, password and optional
  600. # realm each separated by a colon. You may enter more than one proxy-login
  601. # as long as each one has a different realm. If you do not enter a realm,
  602. # then siege will send that login information to all proxy challenges. If
  603. # you have more than one proxy-login, then scout will attempt to match the
  604. # login to the realm.
  605. #
  606. # ex: proxy-login: jeff:secret:corporate
  607. # proxy-login: jeff:whoohoo
  608. #
  609. # proxy-login =
  610.  
  611. #
  612. # Redirection support. By default, siege will follow a HTTP redirect to the
  613. # Location provided by the server. If it's parser is enabled, then it will
  614. # also follow and HTML META redirect. If, for some reason, you do not wish
  615. # wish to follow redirects, then set this redirective to false.
  616. #
  617. # NOTE: redirect support is enabled by default.
  618. #
  619. # ex: follow-location = false
  620. #
  621. # follow-location =
  622.  
  623. #
  624. # end of siegerc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement