1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE document [
<!ENTITY project SYSTEM "project.xml">
]>
<document url="valve.html">
&project;
<properties>
<author email="craigmcc@apache.org">Craig R. McClanahan</author>
<title>The Valve Component</title>
</properties>
<body>
<section name="Table of Contents">
<toc/>
</section>
<section name="Introduction">
<p>A <strong>Valve</strong> element represents a component that will be
inserted into the request processing pipeline for the associated
Catalina container (<a href="engine.html">Engine</a>,
<a href="host.html">Host</a>, or <a href="context.html">Context</a>).
Individual Valves have distinct processing capabilities, and are
described individually below.</p>
<p><em>The description below uses the variable name $CATALINA_BASE to refer the
base directory against which most relative paths are resolved. If you have
not configured Tomcat for multiple instances by setting a CATALINA_BASE
directory, then $CATALINA_BASE will be set to the value of $CATALINA_HOME,
the directory into which you have installed Tomcat.</em></p>
</section>
<section name="Access Logging">
<p>Access logging is performed by valves that implement
<strong>org.apache.catalina.AccessLog</strong> interface.</p>
<subsection name="Access Log Valve">
<subsection name="Introduction">
<p>The <strong>Access Log Valve</strong> creates log files in the
same format as those created by standard web servers. These logs
can later be analyzed by standard log analysis tools to track page
hit counts, user session activity, and so on. This <code>Valve</code>
uses self-contained logic to write its log files, which can be
automatically rolled over at midnight each day. (The essential
requirement for access logging is to handle a large continuous
stream of data with low overhead. This <code>Valve</code> does not
use Apache Commons Logging, thus avoiding additional overhead and
potentially complex configuration).</p>
<p>This <code>Valve</code> may be associated with any Catalina container
(<code>Context</code>, <code>Host</code>, or <code>Engine</code>), and
will record ALL requests processed by that container.</p>
<p>Some requests may be handled by Tomcat before they are passed to a
container. These include redirects from /foo to /foo/ and the rejection of
invalid requests. Where Tomcat can identify the <code>Context</code> that
would have handled the request, the request/response will be logged in the
<code>AccessLog</code>(s) associated <code>Context</code>, <code>Host</code>
and <code>Engine</code>. Where Tomcat cannot identify the
<code>Context</code> that would have handled the request, e.g. in cases
where the URL is invalid, Tomcat will look first in the <code>Engine</code>,
then the default <code>Host</code> for the <code>Engine</code> and finally
the ROOT (or default) <code>Context</code> for the default <code>Host</code>
for an <code>AccessLog</code> implementation. Tomcat will use the first
<code>AccessLog</code> implementation found to log those requests that are
rejected before they are passed to a container.</p>
<p>The output file will be placed in the directory given by the
<code>directory</code> attribute. The name of the file is composed
by concatenation of the configured <code>prefix</code>, timestamp and
<code>suffix</code>. The format of the timestamp in the file name can be
set using the <code>fileDateFormat</code> attribute. This timestamp will
be omitted if the file rotation is switched off by setting
<code>rotatable</code> to <code>false</code>.</p>
<p><strong>Warning:</strong> If multiple AccessLogValve instances
are used, they should be configured to use different output files.</p>
<p>If sendfile is used, the response bytes will be written asynchronously
in a separate thread and the access log valve will not know how many bytes
were actually written. In this case, the number of bytes that was passed to
the sendfile thread for writing will be recorded in the access log valve.
</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Access Log Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="buffered" required="false">
<p>Flag to determine if logging will be buffered.
If set to <code>false</code>, then access logging will be written after each
request. Default value: <code>true</code>
</p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.AccessLogValve</strong> to use the
default access log valve.</p>
</attribute>
<attribute name="condition" required="false">
<p>The same as <code>conditionUnless</code>. This attribute is
provided for backwards compatibility.
</p>
</attribute>
<attribute name="conditionIf" required="false">
<p>Turns on conditional logging. If set, requests will be
logged only if <code>ServletRequest.getAttribute()</code> is
not null. For example, if this value is set to
<code>important</code>, then a particular request will only be logged
if <code>ServletRequest.getAttribute("important") != null</code>.
The use of Filters is an easy way to set/unset the attribute
in the ServletRequest on many different requests.
</p>
</attribute>
<attribute name="conditionUnless" required="false">
<p>Turns on conditional logging. If set, requests will be
logged only if <code>ServletRequest.getAttribute()</code> is
null. For example, if this value is set to
<code>junk</code>, then a particular request will only be logged
if <code>ServletRequest.getAttribute("junk") == null</code>.
The use of Filters is an easy way to set/unset the attribute
in the ServletRequest on many different requests.
</p>
</attribute>
<attribute name="directory" required="false">
<p>Absolute or relative pathname of a directory in which log files
created by this valve will be placed. If a relative path is
specified, it is interpreted as relative to $CATALINA_BASE. If
no directory attribute is specified, the default value is "logs"
(relative to $CATALINA_BASE).</p>
</attribute>
<attribute name="encoding" required="false">
<p>Character set used to write the log file. An empty string means
to use the default character set. Default value: UTF-8.
</p>
</attribute>
<attribute name="fileDateFormat" required="false">
<p>Allows a customized timestamp in the access log file name.
The file is rotated whenever the formatted timestamp changes.
The default value is <code>.yyyy-MM-dd</code>.
If you wish to rotate every hour, then set this value
to <code>.yyyy-MM-dd.HH</code>.
The date format will always be localized
using the locale <code>en_US</code>.
</p>
</attribute>
<attribute name="ipv6Canonical" required="false">
<p>Flag to determine if IPv6 addresses should be represented in canonical
representation format as defined by RFC 5952. If set to <code>true</code>,
then IPv6 addresses will be written in canonical format (e.g.
<code>2001:db8::1:0:0:1</code>, <code>::1</code>), otherwise it will be
represented in full form (e.g. <code>2001:db8:0:0:1:0:0:1</code>,
<code>0:0:0:0:0:0:0:1</code>). Default value: <code>false</code>
</p>
</attribute>
<attribute name="locale" required="false">
<p>The locale used to format timestamps in the access log
lines. Any timestamps configured using an
explicit SimpleDateFormat pattern (<code>%{xxx}t</code>)
are formatted in this locale. By default the
default locale of the Java process is used. Switching the
locale after the AccessLogValve is initialized is not supported.
Any timestamps using the common log format
(<code>CLF</code>) are always formatted in the locale
<code>en_US</code>.
</p>
</attribute>
<attribute name="maxDays" required="false">
<p>The maximum number of days rotated access logs will be retained for
before being deleted. If not specified, the default value of
<code>-1</code> will be used which means never delete old files.</p>
</attribute>
<attribute name="maxLogMessageBufferSize" required="false">
<p>Log message buffers are usually recycled and re-used. To prevent
excessive memory usage, if a buffer grows beyond this size it will be
discarded. The default is <code>256</code> characters. This should be
set to larger than the typical access log message size.</p>
</attribute>
<attribute name="pattern" required="false">
<p>A formatting layout identifying the various information fields
from the request and response to be logged, or the word
<code>common</code> or <code>combined</code> to select a
standard format. See below for more information on configuring
this attribute.</p>
</attribute>
<attribute name="prefix" required="false">
<p>The prefix added to the start of each log file's name. If not
specified, the default value is "access_log".</p>
</attribute>
<attribute name="renameOnRotate" required="false">
<p>By default for a rotatable log the active access log file name
will contain the current timestamp in <code>fileDateFormat</code>.
During rotation the file is closed and a new file with the next
timestamp in the name is created and used. When setting
<code>renameOnRotate</code> to <code>true</code>, the timestamp
is no longer part of the active log file name. Only during rotation
the file is closed and then renamed to include the timestamp.
This is similar to the behavior of most log frameworks when
doing time based rotation.
Default value: <code>false</code>
</p>
</attribute>
<attribute name="requestAttributesEnabled" required="false">
<p>Set to <code>true</code> to check for the existence of request
attributes (typically set by the RemoteIpValve and similar) that should
be used to override the values returned by the request for remote
address, remote host, server port and protocol. If the attributes are
not set, or this attribute is set to <code>false</code> then the values
from the request will be used. If not set, the default value of
<code>false</code> will be used.</p>
</attribute>
<attribute name="resolveHosts" required="false">
<p>This attribute is no longer supported. Use the connector
attribute <code>enableLookups</code> instead.</p>
<p>If you have <code>enableLookups</code> on the connector set to
<code>true</code> and want to ignore it, use <b>%a</b> instead of
<b>%h</b> in the value of <code>pattern</code>.</p>
</attribute>
<attribute name="rotatable" required="false">
<p>Flag to determine if log rotation should occur.
If set to <code>false</code>, then this file is never rotated and
<code>fileDateFormat</code> is ignored.
Default value: <code>true</code>
</p>
</attribute>
<attribute name="suffix" required="false">
<p>The suffix added to the end of each log file's name. If not
specified, the default value is "" (a zero-length string),
meaning that no suffix will be added.</p>
</attribute>
</attributes>
<p>Values for the <code>pattern</code> attribute are made up of literal
text strings, combined with pattern identifiers prefixed by the "%"
character to cause replacement by the corresponding variable value from
the current request and response. The following pattern codes are
supported:</p>
<ul>
<li><b><code>%a</code></b> - Remote IP address.
See also <code>%{xxx}a</code> below.</li>
<li><b><code>%A</code></b> - Local IP address</li>
<li><b><code>%b</code></b> - Bytes sent, excluding HTTP headers, or '-' if zero</li>
<li><b><code>%B</code></b> - Bytes sent, excluding HTTP headers</li>
<li><b><code>%D</code></b> - Time taken to process the request in microseconds</li>
<li><b><code>%F</code></b> - Time taken to commit the response, in milliseconds</li>
<li><b><code>%h</code></b> - Remote host name (or IP address if
<code>enableLookups</code> for the connector is false)</li>
<li><b><code>%H</code></b> - Request protocol</li>
<li><b><code>%I</code></b> - Current request thread name (can compare later with stacktraces)</li>
<li><b><code>%l</code></b> - Remote logical username from identd (always returns
'-')</li>
<li><b><code>%m</code></b> - Request method (GET, POST, etc.)</li>
<li><b><code>%p</code></b> - Local port on which this request was received.
See also <code>%{xxx}p</code> below.</li>
<li><b><code>%q</code></b> - Query string (prepended with a '?' if it exists)</li>
<li><b><code>%r</code></b> - First line of the request (method and request URI)</li>
<li><b><code>%s</code></b> - HTTP status code of the response</li>
<li><b><code>%S</code></b> - User session ID</li>
<li><b><code>%t</code></b> - Date and time, in Common Log Format</li>
<li><b><code>%T</code></b> - Time taken to process the request, in seconds</li>
<li><b><code>%u</code></b> - Remote user that was authenticated (if any), else '-' (escaped if required)</li>
<li><b><code>%U</code></b> - Requested URL path</li>
<li><b><code>%v</code></b> - Local server name</li>
<li><b><code>%X</code></b> - Connection status when response is completed:
<ul>
<li><code>X</code> = Connection aborted before the response completed.</li>
<li><code>+</code> = Connection may be kept alive after the response is sent.</li>
<li><code>-</code> = Connection will be closed after the response is sent.</li>
</ul>
</li>
</ul>
<p>
There is also support to write information incoming or outgoing
headers, cookies, session or request attributes and special
timestamp formats.
It is modeled after the
<a href="https://httpd.apache.org/">Apache HTTP Server</a> log configuration
syntax. Each of them can be used multiple times with different <code>xxx</code> keys:
</p>
<ul>
<li><b><code>%{xxx}a</code></b> write remote address (client) (<code>xxx==remote</code>) or
connection peer address (<code>xxx=peer</code>)</li>
<li><b><code>%{xxx}i</code></b> write value of incoming header with name <code>xxx</code> (escaped if required)</li>
<li><b><code>%{xxx}o</code></b> write value of outgoing header with name <code>xxx</code> (escaped if required)</li>
<li><b><code>%{xxx}c</code></b> write value of cookie(s) with name <code>xxx</code> (comma separated and escaped if required)</li>
<li><b><code>%{xxx}r</code></b> write value of ServletRequest attribute with name <code>xxx</code> (escaped if required, value <code>??</code> if request is null)</li>
<li><b><code>%{xxx}s</code></b> write value of HttpSession attribute with name <code>xxx</code> (escaped if required, value <code>??</code> if request is null)</li>
<li><b><code>%{xxx}p</code></b> write local (server) port (<code>xxx==local</code>) or
remote (client) port (<code>xxx=remote</code>)</li>
<li><b><code>%{xxx}t</code></b> write timestamp at the end of the request formatted using the
enhanced SimpleDateFormat pattern <code>xxx</code></li>
<li><b><code>%{xxx}L</code></b> write an identifier associated with the request where the only valid value for
<code>xxx</code> is <code>c</code> for connection.</li>
<li><b><code>%{xxx}T</code></b> write time taken to process the request using unit <code>xxx</code>
where valid units are <code>ns</code> for nanoseconds, <code>us</code> for microseconds,
<code>ms</code> for milliseconds, <code>fracsec</code> for fractional seconds, or <code>s</code> for whole seconds.
<code>%{s}T</code> is equivalent to <code>%T</code> as well
as <code>%{us}T</code> is equivalent to <code>%D</code>.</li>
</ul>
<p>All formats supported by SimpleDateFormat are allowed in <code>%{xxx}t</code>.
In addition the following extensions have been added:</p>
<ul>
<li><b><code>sec</code></b> - number of seconds since the epoch</li>
<li><b><code>msec</code></b> - number of milliseconds since the epoch</li>
<li><b><code>msec_frac</code></b> - millisecond fraction</li>
</ul>
<p>These formats cannot be mixed with SimpleDateFormat formats in the same format
token.</p>
<p>Furthermore one can define whether to log the timestamp for the request start
time or the response finish time:</p>
<ul>
<li><b><code>begin</code></b> or prefix <b><code>begin:</code></b> chooses
the request start time</li>
<li><b><code>end</code></b> or prefix <b><code>end:</code></b> chooses
the response finish time</li>
</ul>
<p>By adding multiple <code>%{xxx}t</code> tokens to the pattern, one can
also log both timestamps.</p>
<p>Escaping is applied as follows:</p>
<ul>
<li><code>"</code> is escaped as <code>\"</code></li>
<li><code>\</code> is escaped as <code>\\</code></li>
<li>Standard C escaping are used for <code>\f</code>, <code>\n</code>,
<code>\r</code> and <code>\t</code></li>
<li>Any other control characters or characters with code points above 127
are encoded using the standard Java unicode escaping
(<code>\uXXXX</code>)</li>
</ul>
<p>The shorthand pattern <code>pattern="common"</code>
corresponds to the Common Log Format defined by
<strong>'%h %l %u %t "%r" %s %b'</strong>.</p>
<p>The shorthand pattern <code>pattern="combined"</code>
appends the values of the <code>Referer</code> and <code>User-Agent</code>
headers, each in double quotes, to the <code>common</code> pattern.</p>
<p>Fields using unknown pattern identifiers will be logged as <code>???X???</code>
where <code>X</code> is the unknown identifier. Fields with unknown pattern identifier
plus <code>{xxx}</code> key will be logged as <code>???</code>.</p>
<p>When Tomcat is operating behind a reverse proxy, the client information
logged by the Access Log Valve may represent the reverse proxy, the browser
or some combination of the two depending on the configuration of Tomcat and
the reverse proxy. For Tomcat configuration options see
<a href="#Proxies_Support">Proxies Support</a> and the
<a href="../proxy-howto.html">Proxy How-To</a>. For reverse proxies that
use mod_jk, see the <a
href="https://tomcat.apache.org/connectors-doc/generic_howto/proxy.html">generic
proxy</a> documentation. For other reverse proxies, consult their
documentation.</p>
</subsection>
</subsection>
<subsection name="Extended Access Log Valve">
<subsection name="Introduction">
<p>The <strong>Extended Access Log Valve</strong> extends the
<a href="#Access_Log_Valve">Access Log Valve</a> class, and so
uses the same self-contained logging logic. This means it
implements many of the same file handling attributes. The main
difference to the standard <code>AccessLogValve</code> is that
<code>ExtendedAccessLogValve</code> creates log files which
conform to the Working Draft for the
<a href="https://www.w3.org/TR/WD-logfile.html">Extended Log File Format</a>
defined by the W3C.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Extended Access Log Valve</strong> supports all
configuration attributes of the standard
<a href="#Access_Log_Valve">Access Log Valve.</a> Only the
values used for <code>className</code> and <code>pattern</code> differ.</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.ExtendedAccessLogValve</strong> to
use the extended access log valve.</p>
</attribute>
<attribute name="pattern" required="false">
<p>A formatting layout identifying the various information fields
from the request and response to be logged.
See below for more information on configuring this attribute.</p>
</attribute>
</attributes>
<p>Values for the <code>pattern</code> attribute are made up of
format tokens. Some of the tokens need an additional prefix. Possible
prefixes are <code>c</code> for "client", <code>s</code> for "server",
<code>cs</code> for "client to server", <code>sc</code> for
"server to client" or <code>x</code> for "application specific".
Furthermore some tokens are completed by an additional selector.
See the <a href="https://www.w3.org/TR/WD-logfile.html">W3C specification</a>
for more information about the format.</p>
<p>The following format tokens are supported:</p>
<ul>
<li><b>bytes</b> - Bytes sent, excluding HTTP headers, or '-' if zero</li>
<li><b>c-dns</b> - Remote host name (or IP address if
<code>enableLookups</code> for the connector is false)</li>
<li><b>c-ip</b> - Remote IP address</li>
<li><b>cs-method</b> - Request method (GET, POST, etc.)</li>
<li><b>cs-uri</b> - Request URI</li>
<li><b>cs-uri-query</b> - Query string (prepended with a '?' if it exists)</li>
<li><b>cs-uri-stem</b> - Requested URL path</li>
<li><b>date</b> - The date in yyyy-mm-dd format for GMT</li>
<li><b>s-dns</b> - Local host name</li>
<li><b>s-ip</b> - Local IP address</li>
<li><b>sc-status</b> - HTTP status code of the response</li>
<li><b>time</b> - Time the request was served in HH:mm:ss format for GMT</li>
<li><b>time-taken</b> - Time (in seconds) taken to serve the request. Can also use the
suffixes <code>-ns</code> for nanoseconds, <code>-us</code> for microseconds,
<code>-ms</code> for milliseconds, <code>-fracsec</code> for fractional seconds.</li>
<li><b>x-threadname</b> - Current request thread name (can compare later with stacktraces)</li>
</ul>
<p>For any of the <code>x-H(XXX)</code> the following method will be called from the
HttpServletRequest object:</p>
<ul>
<li><b><code>x-H(authType)</code></b>: getAuthType </li>
<li><b><code>x-H(characterEncoding)</code></b>: getCharacterEncoding </li>
<li><b><code>x-H(connectionId)</code></b>: getServletConnection().getConnectionId</li>
<li><b><code>x-H(contentLength)</code></b>: getContentLength </li>
<li><b><code>x-H(locale)</code></b>: getLocale</li>
<li><b><code>x-H(protocol)</code></b>: getProtocol </li>
<li><b><code>x-H(remoteUser)</code></b>: getRemoteUser</li>
<li><b><code>x-H(requestedSessionId)</code></b>: getRequestedSessionId</li>
<li><b><code>x-H(requestedSessionIdFromCookie)</code></b>:
isRequestedSessionIdFromCookie </li>
<li><b><code>x-H(requestedSessionIdValid)</code></b>:
isRequestedSessionIdValid</li>
<li><b><code>x-H(scheme)</code></b>: getScheme</li>
<li><b><code>x-H(secure)</code></b>: isSecure</li>
</ul>
<p>
There is also support to write information about headers
cookies, context, request or session attributes and request
parameters.
</p>
<ul>
<li><b><code>cs(XXX)</code></b> for incoming request headers with name XXX</li>
<li><b><code>sc(XXX)</code></b> for outgoing response headers with name XXX</li>
<li><b><code>x-A(XXX)</code></b> for the servlet context attribute with name XXX</li>
<li><b><code>x-C(XXX)</code></b> for the cookie(s) with name XXX (comma separated if required)</li>
<li><b><code>x-O(XXX)</code></b> for a concatenation of all outgoing response headers with name XXX</li>
<li><b><code>x-P(XXX)</code></b> for the URL encoded (using UTF-8) request parameter with name XXX</li>
<li><b><code>x-R(XXX)</code></b> for the request attribute with name XXX</li>
<li><b><code>x-S(XXX)</code></b> for the session attribute with name XXX</li>
</ul>
</subsection>
</subsection>
<subsection name="JSON Access Log Valve">
<subsection name="Introduction">
<p>The <strong>JSON Access Log Valve</strong> extends the
<a href="#Access_Log_Valve">Access Log Valve</a>, and so
uses the same self-contained logging logic. This means it
implements the same file handling attributes. The main
difference to the standard <code>AccessLogValve</code> is that
<code>JsonAccessLogValve</code> creates log files which
follow the JSON syntax as defined by
<a href="https://www.rfc-editor.org/rfc/rfc8259.html">RFC 8259</a>.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>JSON Access Log Valve</strong> supports all
configuration attributes of the standard
<a href="#Access_Log_Valve">Access Log Valve.</a> Only the
values used for <code>className</code> differ.</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.JsonAccessLogValve</strong> to
use the extended access log valve.</p>
</attribute>
</attributes>
<p>While the patterns supported are the same as for the regular
<a href="#Access_Log_Valve">Access Log Valve</a>,
there are a few differences:
<ul>
<li>requests are logged as JSON objects.</li>
<li>each supported "%X" single character pattern
identifier results in a key value pair in this object.
See below for the list of keys used for the respective pattern
identifiers.</li>
<li>each pattern identifiers using a subkey of the form <code>%{xxx}X</code>
where "X" is one of "a", "p" or "t"
results in a key value pair of the form "key-xxx".
See below for the list of keys used for the respective pattern
identifiers.</li>
<li>each pattern identifiers using a subkey of the form <code>%{xxx}X</code>
where "X" is one of "c", "i", "o", "r" or "s"
results in a sub object. See below for the key pointing at this
sub object. The keys in the sub object are the "xxx" subkeys in the pattern.</li>
<li>each unsupported "%X" character pattern
identifier results in a key value pair using the key "other-X".</li>
<li>the values logged are the same as the ones logged by
the standard <a href="#Access_Log_Valve">Access Log Valve</a>
for the same pattern identifiers.</li>
<li>any "xxx" subkeys get Json escaped.</li>
<li>any verbatim text between pattern identifiers gets silently ignored.</li>
</ul>
The JSON object keys used for the pattern identifiers which
do not generate a sub object are the following:
<ul>
<li><b><code>%a</code></b>: remoteAddr</li>
<li><b><code>%A</code></b>: localAddr</li>
<li><b><code>%b</code></b>: size</li>
<li><b><code>%B</code></b>: byteSentNC</li>
<li><b><code>%D</code></b>: elapsedTime</li>
<li><b><code>%F</code></b>: firstByteTime</li>
<li><b><code>%h</code></b>: host</li>
<li><b><code>%H</code></b>: protocol</li>
<li><b><code>%I</code></b>: threadName</li>
<li><b><code>%l</code></b>: logicalUserName</li>
<li><b><code>%m</code></b>: method</li>
<li><b><code>%p</code></b>: port</li>
<li><b><code>%q</code></b>: query</li>
<li><b><code>%r</code></b>: request</li>
<li><b><code>%s</code></b>: statusCode</li>
<li><b><code>%S</code></b>: sessionId</li>
<li><b><code>%t</code></b>: time</li>
<li><b><code>%T</code></b>: elapsedTimeS</li>
<li><b><code>%u</code></b>: user</li>
<li><b><code>%U</code></b>: path</li>
<li><b><code>%v</code></b>: localServerName</li>
<li><b><code>%X</code></b>: connectionStatus</li>
</ul>
The JSON object keys used for the pattern identifiers which
generate a sub object are the following:
<ul>
<li><b><code>%c</code></b>: cookies</li>
<li><b><code>%i</code></b>: requestHeaders</li>
<li><b><code>%o</code></b>: responseHeaders</li>
<li><b><code>%r</code></b>: requestAttributes</li>
<li><b><code>%s</code></b>: sessionAttributes</li>
</ul>
</p>
</subsection>
</subsection>
</section>
<section name="Access Control">
<subsection name="Remote Address Valve">
<subsection name="Introduction">
<p>The <strong>Remote Address Valve</strong> allows you to compare the
IP address of the client that submitted this request against one or more
<em>regular expressions</em>, and either allow the request to continue
or refuse to process the request from this client. A Remote Address
Valve can be associated with any Catalina container
(<a href="engine.html">Engine</a>, <a href="host.html">Host</a>, or
<a href="context.html">Context</a>), and must accept any request
presented to this container for processing before it will be passed on.</p>
<p>The syntax for <em>regular expressions</em> is different than that for
'standard' wildcard matching. Tomcat uses the <code>java.util.regex</code>
package. Please consult the Java documentation for details of the
expressions supported.</p>
<p>After setting the attribute <code>addConnectorPort</code> to
<code>true</code>, one can append the server connector port separated with a
semicolon (";") to allow different expressions for each connector.</p>
<p>By setting the attribute <code>usePeerAddress</code> to
<code>true</code>, the valve will use the connection peer address in its
checks. This will differ from the client IP, if a reverse proxy is used
in front of Tomcat in combination with either the AJP protocol, or the
HTTP protocol plus the <code>RemoteIp(Valve|Filter)</code>.</p>
<p>A refused request will be answered a response with status code
<code>403</code>. This status code can be overwritten using the attribute
<code>denyStatus</code>.</p>
<p>By setting the attribute <code>invalidAuthenticationWhenDeny</code> to
<code>true</code>, the behavior when a request is refused can be changed
to not deny but instead set an invalid <code>authentication</code>
header. This is useful in combination with the context attribute
<code>preemptiveAuthentication="true"</code>.</p>
<p><strong>Note:</strong> There is a caveat when using this valve with
IPv6 addresses. Format of the IP address that this valve is processing
depends on the API that was used to obtain it. If the address was obtained
from Java socket using Inet6Address class, its format will be
<code>x:x:x:x:x:x:x:x</code>. That is, the IP address for localhost
will be <code>0:0:0:0:0:0:0:1</code> instead of the more widely used
<code>::1</code>. Consult your access logs for the actual value.</p>
<p>See also: <a href="#Remote_Host_Valve">Remote Host Valve</a>,
<a href="#Remote_CIDR_Valve">Remote CIDR Valve</a>,
<a href="#Remote_IP_Valve">Remote IP Valve</a>,
<a href="http.html">HTTP Connector</a> configuration.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Remote Address Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.RemoteAddrValve</strong>.</p>
</attribute>
<attribute name="allow" required="false">
<p>A regular expression (using <code>java.util.regex</code>) that the
remote client's IP address is compared to. If this attribute
is specified, the remote address MUST match for this request to be
accepted. If this attribute is not specified, all requests will be
accepted UNLESS the remote address matches a <code>deny</code>
pattern.</p>
</attribute>
<attribute name="deny" required="false">
<p>A regular expression (using <code>java.util.regex</code>) that the
remote client's IP address is compared to. If this attribute
is specified, the remote address MUST NOT match for this request to be
accepted. If this attribute is not specified, request acceptance is
governed solely by the <code>allow</code> attribute.</p>
</attribute>
<attribute name="denyStatus" required="false">
<p>HTTP response status code that is used when rejecting denied
request. The default value is <code>403</code>. For example,
it can be set to the value <code>404</code>.</p>
</attribute>
<attribute name="addConnectorPort" required="false">
<p>Append the server connector port to the client IP address separated
with a semicolon (";"). If this is set to <code>true</code>, the
expressions configured with <code>allow</code> and
<code>deny</code> is compared against <code>ADDRESS;PORT</code>
where <code>ADDRESS</code> is the client IP address and
<code>PORT</code> is the Tomcat connector port which received the
request. The default value is <code>false</code>.</p>
</attribute>
<attribute name="invalidAuthenticationWhenDeny" required="false">
<p>When a request should be denied, do not deny but instead
set an invalid <code>authentication</code> header. This only works
if the context has the attribute <code>preemptiveAuthentication="true"</code>
set. An already existing <code>authentication</code> header will not be
overwritten. In effect this will trigger authentication instead of deny
even if the application does not have a security constraint configured.</p>
<p>This can be combined with <code>addConnectorPort</code> to trigger authentication
depending on the client and the connector that is used to access an application.</p>
</attribute>
<attribute name="usePeerAddress" required="false">
<p>Use the connection peer address instead of the client IP address.
They will differ, if a reverse proxy is used in front of Tomcat in
combination with either the AJP protocol, or the HTTP protocol plus
the <code>RemoteIp(Valve|Filter)</code>.</p>
</attribute>
</attributes>
</subsection>
<subsection name="Example 1" anchor="Remote_Address_Valve/Example_localhost">
<p>To allow access only for the clients connecting from localhost:</p>
<source><![CDATA[<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1"/>]]></source>
</subsection>
<subsection name="Example 2" anchor="Remote_Address_Valve/Example_localhost_port">
<p>To allow unrestricted access for the clients connecting from localhost
but for all other clients only to port 8443:</p>
<source><![CDATA[<Valve className="org.apache.catalina.valves.RemoteAddrValve"
addConnectorPort="true"
allow="127\.\d+\.\d+\.\d+;\d*|::1;\d*|0:0:0:0:0:0:0:1;\d*|.*;8443"/>]]></source>
</subsection>
<subsection name="Example 3" anchor="Remote_Address_Valve/Example_port_auth">
<p>To allow unrestricted access to port 8009, but trigger basic
authentication if the application is accessed on another port:</p>
<source><![CDATA[<Context>
...
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
addConnectorPort="true"
invalidAuthenticationWhenDeny="true"
allow=".*;8009"/>
<Valve className="org.apache.catalina.authenticator.BasicAuthenticator" />
...
</Context>]]></source>
</subsection>
</subsection>
<subsection name="Remote Host Valve">
<subsection name="Introduction">
<p>The <strong>Remote Host Valve</strong> allows you to compare the
hostname of the client that submitted this request against one or more
<em>regular expressions</em>, and either allow the request to continue
or refuse to process the request from this client. A Remote Host
Valve can be associated with any Catalina container
(<a href="engine.html">Engine</a>, <a href="host.html">Host</a>, or
<a href="context.html">Context</a>), and must accept any request
presented to this container for processing before it will be passed on.</p>
<p>The syntax for <em>regular expressions</em> is different than that for
'standard' wildcard matching. Tomcat uses the <code>java.util.regex</code>
package. Please consult the Java documentation for details of the
expressions supported.</p>
<p>After setting the attribute <code>addConnectorPort</code> to
<code>true</code>, one can append the server connector port separated with a
semicolon (";") to allow different expressions for each connector.</p>
<p>A refused request will be answered a response with status code
<code>403</code>. This status code can be overwritten using the attribute
<code>denyStatus</code>.</p>
<p>By setting the attribute <code>invalidAuthenticationWhenDeny</code> to
<code>true</code>, the behavior when a request is refused can be changed
to not deny but instead set an invalid <code>authentication</code>
header. This is useful in combination with the context attribute
<code>preemptiveAuthentication="true"</code>.</p>
<p><strong>Note:</strong> This valve processes the value returned by
method <code>ServletRequest.getRemoteHost()</code>. To allow the method
to return proper host names, you have to enable "DNS lookups" feature on
a <strong>Connector</strong>.</p>
<p>See also: <a href="#Remote_Address_Valve">Remote Address Valve</a>,
<a href="#Remote_CIDR_Valve">Remote CIDR Valve</a>,
<a href="#Remote_IP_Valve">Remote IP Valve</a>,
<a href="http.html">HTTP Connector</a> configuration.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Remote Host Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.RemoteHostValve</strong>.</p>
</attribute>
<attribute name="allow" required="false">
<p>A regular expression (using <code>java.util.regex</code>) that the
remote client's hostname is compared to. If this attribute
is specified, the remote hostname MUST match for this request to be
accepted. If this attribute is not specified, all requests will be
accepted UNLESS the remote hostname matches a <code>deny</code>
pattern.</p>
</attribute>
<attribute name="deny" required="false">
<p>A regular expression (using <code>java.util.regex</code>) that the
remote client's hostname is compared to. If this attribute
is specified, the remote hostname MUST NOT match for this request to be
accepted. If this attribute is not specified, request acceptance is
governed solely by the <code>allow</code> attribute.</p>
</attribute>
<attribute name="denyStatus" required="false">
<p>HTTP response status code that is used when rejecting denied
request. The default value is <code>403</code>. For example,
it can be set to the value <code>404</code>.</p>
</attribute>
<attribute name="addConnectorPort" required="false">
<p>Append the server connector port to the client hostname separated
with a semicolon (";"). If this is set to <code>true</code>, the
expressions configured with <code>allow</code> and
<code>deny</code> is compared against <code>HOSTNAME;PORT</code>
where <code>HOSTNAME</code> is the client hostname and
<code>PORT</code> is the Tomcat connector port which received the
request. The default value is <code>false</code>.</p>
</attribute>
<attribute name="invalidAuthenticationWhenDeny" required="false">
<p>When a request should be denied, do not deny but instead
set an invalid <code>authentication</code> header. This only works
if the context has the attribute <code>preemptiveAuthentication="true"</code>
set. An already existing <code>authentication</code> header will not be
overwritten. In effect this will trigger authentication instead of deny
even if the application does not have a security constraint configured.</p>
<p>This can be combined with <code>addConnectorPort</code> to trigger authentication
depending on the client and the connector that is used to access an application.</p>
</attribute>
</attributes>
</subsection>
</subsection>
<subsection name="Remote CIDR Valve">
<subsection name="Introduction">
<p>The <strong>Remote CIDR Valve</strong> allows you to compare the
IP address of the client that submitted this request against one or more
netmasks following the CIDR notation, and either allow the request to
continue or refuse to process the request from this client. IPv4 and
IPv6 are both fully supported. A Remote CIDR Valve can be associated
with any Catalina container (<a href="engine.html">Engine</a>,
<a href="host.html">Host</a>, or <a href="context.html">Context</a>), and
must accept any request presented to this container for processing before
it will be passed on.
</p>
<p>This valve mimics Apache's <code>Order</code>,
<code>Allow from</code> and <code>Deny from</code> directives,
with the following limitations:
</p>
<ul>
<li><code>Order</code> will always be <code>allow, deny</code>;</li>
<li>dotted quad notations for netmasks are not supported (that is, you
cannot write <code>192.168.1.0/255.255.255.0</code>, you must write
<code>192.168.1.0/24</code>;
</li>
<li>shortcuts, like <code>10.10.</code>, which is equivalent to
<code>10.10.0.0/16</code>, are not supported;
</li>
<li>as the valve name says, this is a CIDR only valve,
therefore subdomain notations like <code>.mydomain.com</code> are not
supported either.
</li>
</ul>
<p>After setting the attribute <code>addConnectorPort</code> to
<code>true</code>, one can append the server connector port separated with a
semicolon (";") to allow different expressions for each connector.</p>
<p>By setting the attribute <code>usePeerAddress</code> to
<code>true</code>, the valve will use the connection peer address in its
checks. This will differ from the client IP, if a reverse proxy is used
in front of Tomcat in combination with either the AJP protocol, or the
HTTP protocol plus the <code>RemoteIp(Valve|Filter)</code>.</p>
<p>A refused request will be answered a response with status code
<code>403</code>. This status code can be overwritten using the attribute
<code>denyStatus</code>.</p>
<p>By setting the attribute <code>invalidAuthenticationWhenDeny</code> to
<code>true</code>, the behavior when a request is refused can be changed
to not deny but instead set an invalid <code>authentication</code>
header. This is useful in combination with the context attribute
<code>preemptiveAuthentication="true"</code>.</p>
<p>Some more features of this valve are:
</p>
<ul>
<li>if you omit the CIDR prefix, this valve becomes a single IP
valve;</li>
<li>unlike the <a href="#Remote_Host_Valve">Remote Host Valve</a>,
it can handle IPv6 addresses in condensed form (<code>::1</code>,
<code>fe80::/71</code>, etc).</li>
</ul>
<p>See also: <a href="#Remote_Address_Valve">Remote Address Valve</a>,
<a href="#Remote_Host_Valve">Remote Host Valve</a>,
<a href="#Remote_IP_Valve">Remote IP Valve</a>,
<a href="http.html">HTTP Connector</a> configuration.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Remote CIDR Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.RemoteCIDRValve</strong>.</p>
</attribute>
<attribute name="allow" required="false">
<p>A comma-separated list of IPv4 or IPv6 netmasks or addresses
that the remote client's IP address is matched against.
If this attribute is specified, the remote address MUST match
for this request to be accepted. If this attribute is not specified,
all requests will be accepted UNLESS the remote IP is matched by a
netmask in the <code>deny</code> attribute.
</p>
</attribute>
<attribute name="deny" required="false">
<p>A comma-separated list of IPv4 or IPv6 netmasks or addresses
that the remote client's IP address is matched against.
If this attribute is specified, the remote address MUST NOT match
for this request to be accepted. If this attribute is not specified,
request acceptance is governed solely by the <code>accept</code>
attribute.
</p>
</attribute>
<attribute name="denyStatus" required="false">
<p>HTTP response status code that is used when rejecting denied
request. The default value is <code>403</code>. For example,
it can be set to the value <code>404</code>.</p>
</attribute>
<attribute name="addConnectorPort" required="false">
<p>Append the server connector port to the client IP address separated
with a semicolon (";"). If this is set to <code>true</code>, the
expressions configured with <code>allow</code> and
<code>deny</code> is compared against <code>ADDRESS;PORT</code>
where <code>ADDRESS</code> is the client IP address and
<code>PORT</code> is the Tomcat connector port which received the
request. The default value is <code>false</code>.</p>
</attribute>
<attribute name="invalidAuthenticationWhenDeny" required="false">
<p>When a request should be denied, do not deny but instead
set an invalid <code>authentication</code> header. This only works
if the context has the attribute <code>preemptiveAuthentication="true"</code>
set. An already existing <code>authentication</code> header will not be
overwritten. In effect this will trigger authentication instead of deny
even if the application does not have a security constraint configured.</p>
<p>This can be combined with <code>addConnectorPort</code> to trigger authentication
depending on the client and the connector that is used to access an application.</p>
</attribute>
<attribute name="usePeerAddress" required="false">
<p>Use the connection peer address instead of the client IP address.
They will differ, if a reverse proxy is used in front of Tomcat in
combination with either the AJP protocol, or the HTTP protocol plus
the <code>RemoteIp(Valve|Filter)</code>.</p>
</attribute>
</attributes>
</subsection>
<subsection name="Example 1" anchor="Remote_CIDR_Valve/Example_localhost">
<p>To allow access only for the clients connecting from localhost:</p>
<source><![CDATA[<Valve className="org.apache.catalina.valves.RemoteCIDRValve"
allow="127.0.0.1, ::1"/>]]></source>
</subsection>
<subsection name="Example 2" anchor="Remote_CIDR_Valve/Example_localhost_port">
<p>To allow unrestricted access for the clients connecting from the local network
but for all clients in network 10. only to port 8443:</p>
<source><![CDATA[<Valve className="org.apache.catalina.valves.RemoteCIDRValve"
addConnectorPort="true"
allow="127.0.0.1;\d*|::1;\d*|10.0.0.0/8;8443"/>]]></source>
</subsection>
<subsection name="Example 3" anchor="Remote_CIDR_Valve/Example_port_auth">
<p>To allow access to port 8009 from network 10., but trigger basic
authentication if the application is accessed on another port:</p>
<source><![CDATA[<Context>
...
<Valve className="org.apache.catalina.valves.RemoteCIDRValve"
addConnectorPort="true"
invalidAuthenticationWhenDeny="true"
allow="10.0.0.0/8;8009"/>
<Valve className="org.apache.catalina.authenticator.BasicAuthenticator" />
...
</Context>]]></source>
</subsection>
</subsection>
</section>
<section name="Proxies Support">
<subsection name="Load Balancer Draining Valve">
<subsection name="Introduction">
<p>
When using mod_jk or mod_proxy_ajp, the client's session id is used to
determine which back-end server will be used to serve the request. If the
target node is being "drained" (in mod_jk, this is the <i>DISABLED</i>
state; in mod_proxy_ajp, this is the <i>Drain (N)</i> state), requests
for expired sessions can actually cause the draining node to fail to
drain.
</p>
<p>
Unfortunately, AJP-based load-balancers cannot prove whether the
client-provided session id is valid or not and therefore will send any
requests for a session that appears to be targeted to that node to the
disabled (or "draining") node, causing the "draining" process to take
longer than necessary.
</p>
<p>
This Valve detects requests for invalid sessions, strips the session
information from the request, and redirects back to the same URL, where
the load-balancer should choose a different (active) node to handle the
request. This will accelerate the "draining" process for the disabled
node(s).
</p>
<p>
The activation state of the node is sent by the load-balancer in the
request, so no state change on the node being disabled is necessary. Simply
configure this Valve in your valve pipeline and it will take action when
the activation state is set to "disabled".
</p>
<p>
You should take care to register this Valve earlier in the Valve pipeline
than any authentication Valves, because this Valve should be able to
redirect a request before any authentication Valve saves a request to a
protected resource. If this happens, a new session will be created and
the draining process will stall because a new, valid session will be
established.
</p>
</subsection><!-- / Introduction -->
<subsection name="Attributes">
<p>The <strong>Load Balancer Draining Valve</strong> supports the
following configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.LoadBalancerDrainingValve</strong>.
</p>
</attribute>
<attribute name="redirectStatusCode" required="false">
<p>Allows setting a custom redirect code to be used when the client
is redirected to be re-balanced by the load-balancer. The default is
307 TEMPORARY_REDIRECT.</p>
</attribute>
<attribute name="ignoreCookieName" required="false">
<p>When used with <code>ignoreCookieValue</code>, a client can present
this cookie (and accompanying value) that will cause this Valve to
do nothing. This will allow you to probe your <i>disabled</i> node
before re-enabling it to make sure that it is working as expected.</p>
</attribute>
<attribute name="ignoreCookieValue" required="false">
<p>When used with <code>ignoreCookieName</code>, a client can present
a cookie (and accompanying value) that will cause this Valve to
do nothing. This will allow you to probe your <i>disabled</i> node
before re-enabling it to make sure that it is working as expected.</p>
</attribute>
</attributes>
</subsection><!-- /Attributes -->
</subsection><!-- /Load Balancer Draining Valve -->
<subsection name="Remote IP Valve">
<subsection name="Introduction">
<p>Tomcat port of
<a href="https://httpd.apache.org/docs/trunk/mod/mod_remoteip.html">mod_remoteip</a>,
this valve replaces the apparent client remote IP address and hostname for
the request with the IP address list presented by a proxy or a load balancer
via a request headers (e.g. "X-Forwarded-For").</p>
<p>Another feature of this valve is to replace the apparent scheme
(http/https), server port and <code>request.secure</code> with the scheme presented
by a proxy or a load balancer via a request header
(e.g. "X-Forwarded-Proto").</p>
<p>This Valve may be used at the <code>Engine</code>, <code>Host</code> or
<code>Context</code> level as required. Normally, this Valve would be used
at the <code>Engine</code> level.</p>
<p>If used in conjunction with Remote Address/Host valves then this valve
should be defined first to ensure that the correct client IP address is
presented to the Remote Address/Host valves.</p>
<p><strong>Note:</strong> By default this valve has no effect on the
values that are written into access log. The original values are restored
when request processing leaves the valve and that always happens earlier
than access logging. To pass the remote address, remote host, server port
and protocol values set by this valve to the access log,
they are put into request attributes. Publishing these values here
is enabled by default, but <code>AccessLogValve</code> should be explicitly
configured to use them. See documentation for
<code>requestAttributesEnabled</code> attribute of
<code>AccessLogValve</code>.</p>
<p>The names of request attributes that are set by this valve
and can be used by access logging are the following:</p>
<ul>
<li><code>org.apache.catalina.AccessLog.RemoteAddr</code></li>
<li><code>org.apache.catalina.AccessLog.RemoteHost</code></li>
<li><code>org.apache.catalina.AccessLog.Protocol</code></li>
<li><code>org.apache.catalina.AccessLog.ServerPort</code></li>
<li><code>org.apache.tomcat.remoteAddr</code></li>
</ul>
</subsection>
<subsection name="Attributes">
<p>The <strong>Remote IP Valve</strong> supports the
following configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.RemoteIpValve</strong>.</p>
</attribute>
<attribute name="remoteIpHeader" required="false">
<p>Name of the HTTP Header read by this valve that holds the list of
traversed IP addresses starting from the requesting client. If not
specified, the default of <code>x-forwarded-for</code> is used.</p>
</attribute>
<attribute name="internalProxies" required="false">
<p>Regular expression (using <code>java.util.regex</code>) that a
proxy's IP address must match to be considered an internal proxy.
Internal proxies that appear in the <strong>remoteIpHeader</strong> will
be trusted and will not appear in the <strong>proxiesHeader</strong>
value. If not specified the default value of <code>
10\.\d{1,3}\.\d{1,3}\.\d{1,3}|192\.168\.\d{1,3}\.\d{1,3}|169\.254\.\d{1,3}\.\d{1,3}|127\.\d{1,3}\.\d{1,3}\.\d{1,3}|100\.6[4-9]{1}\.\d{1,3}\.\d{1,3}|100\.[7-9]{1}\d{1}\.\d{1,3}\.\d{1,3}|100\.1[0-1]{1}\d{1}\.\d{1,3}\.\d{1,3}|100\.12[0-7]{1}\.\d{1,3}\.\d{1,3}|172\.1[6-9]{1}\.\d{1,3}\.\d{1,3}|172\.2[0-9]{1}\.\d{1,3}\.\d{1,3}|172\.3[0-1]{1}\.\d{1,3}\.\d{1,3}|0:0:0:0:0:0:0:1|::1|fe[89ab]\p{XDigit}:.*|"f[cd]\p{XDigit}{2}+:.*
</code> will be used.</p>
</attribute>
<attribute name="proxiesHeader" required="false">
<p>Name of the HTTP header created by this valve to hold the list of
proxies that have been processed in the incoming
<strong>remoteIpHeader</strong>. If not specified, the default of
<code>x-forwarded-by</code> is used.</p>
</attribute>
<attribute name="requestAttributesEnabled" required="false">
<p>Set to <code>true</code> to set the request attributes used by
AccessLog implementations to override the values returned by the
request for remote address, remote host, server port and protocol.
Request attributes are also used to enable the forwarded remote address
to be displayed on the status page of the Manager web application.
If not set, the default value of <code>true</code> will be used.</p>
</attribute>
<attribute name="trustedProxies" required="false">
<p>Regular expression (using <code>java.util.regex</code>) that a
proxy's IP address must match to be considered an trusted proxy.
Trusted proxies that appear in the <strong>remoteIpHeader</strong> will
be trusted and will appear in the <strong>proxiesHeader</strong> value.
If not specified, no proxies will be trusted.</p>
</attribute>
<attribute name="protocolHeader" required="false">
<p>Name of the HTTP Header read by this valve that holds the protocol
used by the client to connect to the proxy. If not specified, the
default of <code>X-Forwarded-Proto</code> is used.</p>
</attribute>
<attribute name="hostHeader" required="false">
<p>Name of the HTTP Header read by this valve that holds the host
used by the client to connect to the proxy. If not specified, the
default of <code>null</code> is used.</p>
</attribute>
<attribute name="portHeader" required="false">
<p>Name of the HTTP Header read by this valve that holds the port
used by the client to connect to the proxy. If not specified, the
default of <code>null</code> is used.</p>
</attribute>
<attribute name="protocolHeaderHttpsValue" required="false">
<p>Value of the <strong>protocolHeader</strong> to indicate that it is
an HTTPS request. If not specified, the default of <code>https</code> is
used.</p>
</attribute>
<attribute name="httpServerPort" required="false">
<p>Value returned by <code>ServletRequest.getServerPort()</code>
when the <strong>protocolHeader</strong> indicates <code>http</code>
protocol and no <strong>portHeader</strong> is present. If not
specified, the default of <code>80</code> is used.</p>
</attribute>
<attribute name="httpsServerPort" required="false">
<p>Value returned by <code>ServletRequest.getServerPort()</code>
when the <strong>protocolHeader</strong> indicates <code>https</code>
protocol and no <strong>portHeader</strong> is present. If not
specified, the default of <code>443</code> is used.</p>
</attribute>
<attribute name="changeLocalName" required="false">
<p>If <code>true</code>, the value returned by
<code>ServletRequest.getLocalHost()</code> and
<code>ServletRequest.getServerHost()</code> is modified by the this
valve. If not specified, the default of <code>false</code> is used.</p>
</attribute>
<attribute name="changeLocalPort" required="false">
<p>If <code>true</code>, the value returned by
<code>ServletRequest.getLocalPort()</code> and
<code>ServletRequest.getServerPort()</code> is modified by the this
valve. If not specified, the default of <code>false</code> is used.</p>
</attribute>
</attributes>
</subsection>
</subsection>
<subsection name="SSL Valve">
<subsection name="Introduction">
<p>When using mod_proxy_http, the client SSL information is not included in
the protocol (unlike mod_jk and mod_proxy_ajp). To make the client SSL
information available to Tomcat, some additional configuration is required.
In httpd, mod_headers is used to add the SSL information as HTTP headers. In
Tomcat, this valve is used to read the information from the HTTP headers and
insert it into the request.</p>
<p>Note: Ensure that the headers are always set by httpd for all requests to
prevent a client spoofing SSL information by sending fake headers.</p>
<p>To configure httpd to set the necessary headers, add the following:</p>
<source><IfModule ssl_module>
RequestHeader set SSL_CLIENT_CERT "%{SSL_CLIENT_CERT}s"
RequestHeader set SSL_CIPHER "%{SSL_CIPHER}s"
RequestHeader set SSL_SESSION_ID "%{SSL_SESSION_ID}s"
RequestHeader set SSL_CIPHER_USEKEYSIZE "%{SSL_CIPHER_USEKEYSIZE}s"
</IfModule></source>
</subsection>
<subsection name="Attributes">
<p>The <strong>SSL Valve</strong> supports the following configuration
attribute:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.SSLValve</strong>.
</p>
</attribute>
<attribute name="sslClientCertHeader" required="false">
<p>Allows setting a custom name for the ssl_client_cert header.
If not specified, the default of <code>ssl_client_cert</code> is
used.</p>
</attribute>
<attribute name="sslClientEscapedCertHeader" required="false">
<p>Allows setting a custom name for the ssl_client_escaped_cert header.
If not specified, the default of <code>ssl_client_escaped_cert</code> is
used.</p>
<p>This header is useful for Nginx proxying, and takes precedence over
the ssl_client_cert header.</p>
</attribute>
<attribute name="sslCipherHeader" required="false">
<p>Allows setting a custom name for the ssl_cipher header.
If not specified, the default of <code>ssl_cipher</code> is
used.</p>
</attribute>
<attribute name="sslSessionIdHeader" required="false">
<p>Allows setting a custom name for the ssl_session_id header.
If not specified, the default of <code>ssl_session_id</code> is
used.</p>
</attribute>
<attribute name="sslCipherUserKeySizeHeader" required="false">
<p>Allows setting a custom name for the ssl_cipher_usekeysize header.
If not specified, the default of <code>ssl_cipher_usekeysize</code> is
used.</p>
</attribute>
</attributes>
</subsection>
</subsection>
</section>
<section name="Single Sign On Valve">
<subsection name="Introduction">
<p>The <em>Single Sign On Valve</em> is utilized when you wish to give users
the ability to sign on to any one of the web applications associated with
your virtual host, and then have their identity recognized by all other
web applications on the same virtual host.</p>
<p>See the <a href="host.html#Single_Sign_On">Single Sign On</a> special
feature on the <strong>Host</strong> element for more information.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Single Sign On</strong> Valve supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.authenticator.SingleSignOn</strong>.</p>
</attribute>
<attribute name="requireReauthentication" required="false">
<p>Default false. Flag to determine whether each request needs to be
reauthenticated to the security <strong>Realm</strong>. If "true", this
Valve uses cached security credentials (username and password) to
reauthenticate to the <strong>Realm</strong> each request associated
with an SSO session. If "false", the Valve can itself authenticate
requests based on the presence of a valid SSO cookie, without
rechecking with the <strong>Realm</strong>.</p>
</attribute>
<attribute name="cookieDomain" required="false">
<p>Sets the host domain to be used for sso cookies.</p>
</attribute>
<attribute name="cookieName" required="false">
<p>Sets the cookie name to be used for sso cookies. The default value
is <code>JSESSIONIDSSO</code></p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Authentication">
<p>The valves in this section implement
<strong>org.apache.catalina.Authenticator</strong> interface.</p>
<subsection name="Basic Authenticator Valve">
<subsection name="Introduction">
<p>The <strong>Basic Authenticator Valve</strong> is automatically added to
any <a href="context.html">Context</a> that is configured to use BASIC
authentication.</p>
<p>If any non-default settings are required, the valve may be configured
within <a href="context.html">Context</a> element with the required
values.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Basic Authenticator Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="allowCorsPreflight" required="false">
<p>Are requests that appear to be CORS preflight requests allowed to
bypass the authenticator as required by the CORS specification. The
allowed values are <code>never</code>, <code>filter</code> and
<code>always</code>. <code>never</code> means that a request will never
bypass authentication even if it appears to be a CORS preflight request.
<code>filter</code> means that a request will bypass authentication if
it appears to be a CORS preflight request; it is mapped to a web
application that has the <a href="filter.html#CORS_Filter">CORS
Filter</a> enabled; and the request matches the URLPatterns for the CORS
filter mapper.
<code>always</code> means that all requests that appear to be CORS
preflight requests will bypass authentication. If not set, the default
value is <code>never</code>.</p>
</attribute>
<attribute name="alwaysUseSession" required="false">
<p>Should a session always be used once a user is authenticated? This
may offer some performance benefits since the session can then be used
to cache the authenticated Principal, hence removing the need to
authenticate the user via the Realm on every request. This may be of
help for combinations such as BASIC authentication used with the
JNDIRealm or DataSourceRealms. However there will also be the
performance cost of creating and GC'ing the session. If not set, the
default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="cache" required="false">
<p>Should we cache authenticated Principals if the request is part of an
HTTP session? If not specified, the default value of <code>true</code>
will be used.</p>
</attribute>
<attribute name="changeSessionIdOnAuthentication" required="false">
<p>Controls if the session ID is changed if a session exists at the
point where users are authenticated. This is to prevent session fixation
attacks. If not set, the default value of <code>true</code> will be
used.</p>
</attribute>
<attribute name="charset" required="false">
<p>Controls if the <code>WWW-Authenticate</code> HTTP header includes a
<code>charset</code> authentication parameter as per RFC 7617. The only
permitted options are <code>null</code>, the empty string and
<code>UTF-8</code>. If <code>UTF-8</code> is specified then the
<code>charset</code> authentication parameter will be sent with that
value and the provided user name and optional password will be converted
from bytes to characters using UTF-8. Otherwise, no <code>charset</code>
authentication parameter will be sent and the provided user name and
optional password will be converted from bytes to characters using
ISO-8859-1. The default value is <code>UTF-8</code></p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.authenticator.BasicAuthenticator</strong>.</p>
</attribute>
<attribute name="disableProxyCaching" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers but will also cause secured pages to be
cached by proxies which will almost certainly be a security issue.
<code>securePagesWithPragma</code> offers an alternative, secure,
workaround for browser caching issues. If not set, the default value of
<code>true</code> will be used.</p>
</attribute>
<attribute name="jaspicCallbackHandlerClass" required="false">
<p>Name of the Java class of the
<code>javax.security.auth.callback.CallbackHandler</code> implementation
which should be used by JASPIC. If none is specified the default
<code>org.apache.catalina.authenticator.jaspic.CallbackHandlerImpl</code>
will be used.</p>
</attribute>
<attribute name="securePagesWithPragma" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers by using
<code>Cache-Control: private</code> rather than the default of
<code>Pragma: No-cache</code> and <code>Cache-control: No-cache</code>.
If not set, the default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="secureRandomAlgorithm" required="false">
<p>Name of the algorithm to use to create the
<code>java.security.SecureRandom</code> instances that generate session
IDs. If an invalid algorithm and/or provider is specified, the platform
default provider and the default algorithm will be used. If not
specified, the default algorithm of SHA1PRNG will be used. If the
default algorithm is not supported, the platform default will be used.
To specify that the platform default should be used, do not set the
secureRandomProvider attribute and set this attribute to the empty
string.</p>
</attribute>
<attribute name="secureRandomClass" required="false">
<p>Name of the Java class that extends
<code>java.security.SecureRandom</code> to use to generate SSO session
IDs. If not specified, the default value is
<code>java.security.SecureRandom</code>.</p>
</attribute>
<attribute name="secureRandomProvider" required="false">
<p>Name of the provider to use to create the
<code>java.security.SecureRandom</code> instances that generate SSO
session IDs. If an invalid algorithm and/or provider is specified, the
platform default provider and the default algorithm will be used. If not
specified, the platform default provider will be used.</p>
</attribute>
<attribute name="sendAuthInfoResponseHeaders" required="false">
<p>Controls whether the auth information (remote user and auth type)
shall be returned as response headers for a forwarded/proxied request.
When the <code>RemoteIpValve</code> or <code>RemoteIpFilter</code> mark
a forwarded request with the <code>Globals.REQUEST_FORWARDED_ATTRIBUTE</code>
this authenticator can return the values of
<code>HttpServletRequest.getRemoteUser()</code> and
<code>HttpServletRequest.getAuthType()</code> as response headers
<code>remote-user</code> and <code>auth-type</code> to a reverse proxy.
This is useful, e.g., for access log consistency or other decisions to make.
If not specified, the default value is <code>false</code>.</p>
</attribute>
</attributes>
</subsection>
</subsection>
<subsection name="Digest Authenticator Valve">
<subsection name="Introduction">
<p>The <strong>Digest Authenticator Valve</strong> is automatically added to
any <a href="context.html">Context</a> that is configured to use DIGEST
authentication.</p>
<p>If any non-default settings are required, the valve may be configured
within <a href="context.html">Context</a> element with the required
values.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Digest Authenticator Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="algorithms" required="false">
<p>A comma-separated list of digest algorithms to be used for the
authentication process. Algorithms may be specified using the Java
Standard names or the names used by RFC 7616. If not specified, the
default value of <code>SHA-256,MD5</code> will be used.</p>
</attribute>
<attribute name="allowCorsPreflight" required="false">
<p>Are requests that appear to be CORS preflight requests allowed to
bypass the authenticator as required by the CORS specification. The
allowed values are <code>never</code>, <code>filter</code> and
<code>always</code>. <code>never</code> means that a request will never
bypass authentication even if it appears to be a CORS preflight request.
<code>filter</code> means that a request will bypass authentication if
it appears to be a CORS preflight request; it is mapped to a web
application that has the <a href="filter.html#CORS_Filter">CORS
Filter</a> enabled; and the request matches the URLPatterns for the CORS
filter mapper.
<code>always</code> means that all requests that appear to be CORS
preflight requests will bypass authentication. If not set, the default
value is <code>never</code>.</p>
</attribute>
<attribute name="alwaysUseSession" required="false">
<p>Should a session always be used once a user is authenticated? This
may offer some performance benefits since the session can then be used
to cache the authenticated Principal, hence removing the need to
authenticate the user via the Realm on every request. This may be of
help for combinations such as BASIC authentication used with the
JNDIRealm or DataSourceRealms. However there will also be the
performance cost of creating and GC'ing the session. If not set, the
default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="cache" required="false">
<p>Should we cache authenticated Principals if the request is part of an
HTTP session? If not specified, the default value of <code>false</code>
will be used.</p>
</attribute>
<attribute name="changeSessionIdOnAuthentication" required="false">
<p>Controls if the session ID is changed if a session exists at the
point where users are authenticated. This is to prevent session fixation
attacks. If not set, the default value of <code>true</code> will be
used.</p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.authenticator.DigestAuthenticator</strong>.</p>
</attribute>
<attribute name="disableProxyCaching" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers but will also cause secured pages to be
cached by proxies which will almost certainly be a security issue.
<code>securePagesWithPragma</code> offers an alternative, secure,
workaround for browser caching issues. If not set, the default value of
<code>true</code> will be used.</p>
</attribute>
<attribute name="jaspicCallbackHandlerClass" required="false">
<p>Name of the Java class of the
<code>javax.security.auth.callback.CallbackHandler</code> implementation
which should be used by JASPIC. If none is specified the default
<code>org.apache.catalina.authenticator.jaspic.CallbackHandlerImpl</code>
will be used.</p>
</attribute>
<attribute name="key" required="false">
<p>The secret key used by digest authentication. If not set, a secure
random value is generated. This should normally only be set when it is
necessary to keep key values constant either across server restarts
and/or across a cluster.</p>
</attribute>
<attribute name="nonceCacheSize" required="false">
<p>To protect against replay attacks, the DIGEST authenticator tracks
server nonce and nonce count values. This attribute controls the size
of that cache. If not specified, the default value of 1000 is used.</p>
</attribute>
<attribute name="nonceCountWindowSize" required="false">
<p>Client requests may be processed out of order which in turn means
that the nonce count values may be processed out of order. To prevent
authentication failures when nonce counts are presented out of order
the authenticator tracks a window of nonce count values. This attribute
controls how big that window is. If not specified, the default value of
100 is used.</p>
</attribute>
<attribute name="nonceValidity" required="false">
<p>The time, in milliseconds, that a server generated nonce will be
considered valid for use in authentication. If not specified, the
default value of 300000 (5 minutes) will be used.</p>
</attribute>
<attribute name="opaque" required="false">
<p>The opaque server string used by digest authentication. If not set, a
random value is generated. This should normally only be set when it is
necessary to keep opaque values constant either across server restarts
and/or across a cluster.</p>
</attribute>
<attribute name="securePagesWithPragma" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers by using
<code>Cache-Control: private</code> rather than the default of
<code>Pragma: No-cache</code> and <code>Cache-control: No-cache</code>.
If not set, the default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="secureRandomAlgorithm" required="false">
<p>Name of the algorithm to use to create the
<code>java.security.SecureRandom</code> instances that generate session
IDs. If an invalid algorithm and/or provider is specified, the platform
default provider and the default algorithm will be used. If not
specified, the default algorithm of SHA1PRNG will be used. If the
default algorithm is not supported, the platform default will be used.
To specify that the platform default should be used, do not set the
secureRandomProvider attribute and set this attribute to the empty
string.</p>
</attribute>
<attribute name="secureRandomClass" required="false">
<p>Name of the Java class that extends
<code>java.security.SecureRandom</code> to use to generate SSO session
IDs. If not specified, the default value is
<code>java.security.SecureRandom</code>.</p>
</attribute>
<attribute name="secureRandomProvider" required="false">
<p>Name of the provider to use to create the
<code>java.security.SecureRandom</code> instances that generate SSO
session IDs. If an invalid algorithm and/or provider is specified, the
platform default provider and the default algorithm will be used. If not
specified, the platform default provider will be used.</p>
</attribute>
<attribute name="sendAuthInfoResponseHeaders" required="false">
<p>Controls whether the auth information (remote user and auth type)
shall be returned as response headers for a forwarded/proxied request.
When the <code>RemoteIpValve</code> or <code>RemoteIpFilter</code> mark
a forwarded request with the <code>Globals.REQUEST_FORWARDED_ATTRIBUTE</code>
this authenticator can return the values of
<code>HttpServletRequest.getRemoteUser()</code> and
<code>HttpServletRequest.getAuthType()</code> as response headers
<code>remote-user</code> and <code>auth-type</code> to a reverse proxy.
This is useful, e.g., for access log consistency or other decisions to make.
If not specified, the default value is <code>false</code>.</p>
</attribute>
<attribute name="validateUri" required="false">
<p>Should the URI be validated as required by RFC2617? If not specified,
the default value of <code>true</code> will be used. This should
normally only be set when Tomcat is located behind a reverse proxy and
the proxy is modifying the URI passed to Tomcat such that DIGEST
authentication always fails.</p>
</attribute>
</attributes>
</subsection>
</subsection>
<subsection name="Form Authenticator Valve">
<subsection name="Introduction">
<p>The <strong>Form Authenticator Valve</strong> is automatically added to
any <a href="context.html">Context</a> that is configured to use FORM
authentication.</p>
<p>If any non-default settings are required, the valve may be configured
within <a href="context.html">Context</a> element with the required
values.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Form Authenticator Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="allowCorsPreflight" required="false">
<p>Are requests that appear to be CORS preflight requests allowed to
bypass the authenticator as required by the CORS specification. The
allowed values are <code>never</code>, <code>filter</code> and
<code>always</code>. <code>never</code> means that a request will never
bypass authentication even if it appears to be a CORS preflight request.
<code>filter</code> means that a request will bypass authentication if
it appears to be a CORS preflight request; it is mapped to a web
application that has the <a href="filter.html#CORS_Filter">CORS
Filter</a> enabled; and the request matches the URLPatterns for the CORS
filter mapper.
<code>always</code> means that all requests that appear to be CORS
preflight requests will bypass authentication. If not set, the default
value is <code>never</code>.</p>
</attribute>
<attribute name="authenticationSessionTimeout" required="false">
<p>If the authentication process creates a session, this is the maximum session timeout (in seconds) during the
authentication process. Once authentication is complete, the default session timeout will apply. Sessions that
exist before the authentication process starts will retain their original session timeout throughout. If not
set, the default value of <code>120</code> seconds will be used.</p>
</attribute>
<attribute name="changeSessionIdOnAuthentication" required="false">
<p>Controls if the session ID is changed if a session exists at the
point where users are authenticated. This is to prevent session fixation
attacks. If not set, the default value of <code>true</code> will be
used.</p>
</attribute>
<attribute name="characterEncoding" required="false">
<p>Character encoding to use to read the username and password parameters
from the request. If not set, the encoding of the request body will be
used.</p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.authenticator.FormAuthenticator</strong>.</p>
</attribute>
<attribute name="disableProxyCaching" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers but will also cause secured pages to be
cached by proxies which will almost certainly be a security issue.
<code>securePagesWithPragma</code> offers an alternative, secure,
workaround for browser caching issues. If not set, the default value of
<code>true</code> will be used.</p>
</attribute>
<attribute name="jaspicCallbackHandlerClass" required="false">
<p>Name of the Java class of the
<code>javax.security.auth.callback.CallbackHandler</code> implementation
which should be used by JASPIC. If none is specified the default
<code>org.apache.catalina.authenticator.jaspic.CallbackHandlerImpl</code>
will be used.</p>
</attribute>
<attribute name="landingPage" required="false">
<p>Controls the behavior of the FORM authentication process if the
process is misused, for example by directly requesting the login page
or delaying logging in for so long that the session expires. If this
attribute is set, rather than returning an error response code, Tomcat
will redirect the user to the specified landing page if the login form
is submitted with valid credentials. For the login to be processed, the
landing page must be a protected resource (i.e. one that requires
authentication). If the landing page does not require authentication
then the user will not be logged in and will be prompted for their
credentials again when they access a protected page.</p>
</attribute>
<attribute name="securePagesWithPragma" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers by using
<code>Cache-Control: private</code> rather than the default of
<code>Pragma: No-cache</code> and <code>Cache-control: No-cache</code>.
If not set, the default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="secureRandomAlgorithm" required="false">
<p>Name of the algorithm to use to create the
<code>java.security.SecureRandom</code> instances that generate session
IDs. If an invalid algorithm and/or provider is specified, the platform
default provider and the default algorithm will be used. If not
specified, the default algorithm of SHA1PRNG will be used. If the
default algorithm is not supported, the platform default will be used.
To specify that the platform default should be used, do not set the
secureRandomProvider attribute and set this attribute to the empty
string.</p>
</attribute>
<attribute name="secureRandomClass" required="false">
<p>Name of the Java class that extends
<code>java.security.SecureRandom</code> to use to generate SSO session
IDs. If not specified, the default value is
<code>java.security.SecureRandom</code>.</p>
</attribute>
<attribute name="secureRandomProvider" required="false">
<p>Name of the provider to use to create the
<code>java.security.SecureRandom</code> instances that generate SSO
session IDs. If an invalid algorithm and/or provider is specified, the
platform default provider and the default algorithm will be used. If not
specified, the platform default provider will be used.</p>
</attribute>
<attribute name="sendAuthInfoResponseHeaders" required="false">
<p>Controls whether the auth information (remote user and auth type)
shall be returned as response headers for a forwarded/proxied request.
When the <code>RemoteIpValve</code> or <code>RemoteIpFilter</code> mark
a forwarded request with the <code>Globals.REQUEST_FORWARDED_ATTRIBUTE</code>
this authenticator can return the values of
<code>HttpServletRequest.getRemoteUser()</code> and
<code>HttpServletRequest.getAuthType()</code> as response headers
<code>remote-user</code> and <code>auth-type</code> to a reverse proxy.
This is useful, e.g., for access log consistency or other decisions to make.
If not specified, the default value is <code>false</code>.</p>
</attribute>
</attributes>
</subsection>
</subsection>
<subsection name="SSL Authenticator Valve">
<subsection name="Introduction">
<p>The <strong>SSL Authenticator Valve</strong> is automatically added to
any <a href="context.html">Context</a> that is configured to use SSL
authentication.</p>
<p>If any non-default settings are required, the valve may be configured
within <a href="context.html">Context</a> element with the required
values.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>SSL Authenticator Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="allowCorsPreflight" required="false">
<p>Are requests that appear to be CORS preflight requests allowed to
bypass the authenticator as required by the CORS specification. The
allowed values are <code>never</code>, <code>filter</code> and
<code>always</code>. <code>never</code> means that a request will never
bypass authentication even if it appears to be a CORS preflight request.
<code>filter</code> means that a request will bypass authentication if
it appears to be a CORS preflight request; it is mapped to a web
application that has the <a href="filter.html#CORS_Filter">CORS
Filter</a> enabled; and the request matches the URLPatterns for the CORS
filter mapper.
<code>always</code> means that all requests that appear to be CORS
preflight requests will bypass authentication. If not set, the default
value is <code>never</code>.</p>
</attribute>
<attribute name="cache" required="false">
<p>Should we cache authenticated Principals if the request is part of an
HTTP session? If not specified, the default value of <code>true</code>
will be used.</p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.authenticator.SSLAuthenticator</strong>.</p>
</attribute>
<attribute name="changeSessionIdOnAuthentication" required="false">
<p>Controls if the session ID is changed if a session exists at the
point where users are authenticated. This is to prevent session fixation
attacks. If not set, the default value of <code>true</code> will be
used.</p>
</attribute>
<attribute name="disableProxyCaching" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers but will also cause secured pages to be
cached by proxies which will almost certainly be a security issue.
<code>securePagesWithPragma</code> offers an alternative, secure,
workaround for browser caching issues. If not set, the default value of
<code>true</code> will be used.</p>
</attribute>
<attribute name="jaspicCallbackHandlerClass" required="false">
<p>Name of the Java class of the
<code>javax.security.auth.callback.CallbackHandler</code> implementation
which should be used by JASPIC. If none is specified the default
<code>org.apache.catalina.authenticator.jaspic.CallbackHandlerImpl</code>
will be used.</p>
</attribute>
<attribute name="securePagesWithPragma" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers by using
<code>Cache-Control: private</code> rather than the default of
<code>Pragma: No-cache</code> and <code>Cache-control: No-cache</code>.
If not set, the default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="secureRandomAlgorithm" required="false">
<p>Name of the algorithm to use to create the
<code>java.security.SecureRandom</code> instances that generate session
IDs. If an invalid algorithm and/or provider is specified, the platform
default provider and the default algorithm will be used. If not
specified, the default algorithm of SHA1PRNG will be used. If the
default algorithm is not supported, the platform default will be used.
To specify that the platform default should be used, do not set the
secureRandomProvider attribute and set this attribute to the empty
string.</p>
</attribute>
<attribute name="secureRandomClass" required="false">
<p>Name of the Java class that extends
<code>java.security.SecureRandom</code> to use to generate SSO session
IDs. If not specified, the default value is
<code>java.security.SecureRandom</code>.</p>
</attribute>
<attribute name="secureRandomProvider" required="false">
<p>Name of the provider to use to create the
<code>java.security.SecureRandom</code> instances that generate SSO
session IDs. If an invalid algorithm and/or provider is specified, the
platform default provider and the default algorithm will be used. If not
specified, the platform default provider will be used.</p>
</attribute>
</attributes>
</subsection>
</subsection>
<subsection name="SPNEGO Valve">
<subsection name="Introduction">
<p>The <strong>SPNEGO Authenticator Valve</strong> is automatically added to
any <a href="context.html">Context</a> that is configured to use SPNEGO
authentication.</p>
<p>If any non-default settings are required, the valve may be configured
within <a href="context.html">Context</a> element with the required
values.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>SPNEGO Authenticator Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="allowCorsPreflight" required="false">
<p>Are requests that appear to be CORS preflight requests allowed to
bypass the authenticator as required by the CORS specification. The
allowed values are <code>never</code>, <code>filter</code> and
<code>always</code>. <code>never</code> means that a request will never
bypass authentication even if it appears to be a CORS preflight request.
<code>filter</code> means that a request will bypass authentication if
it appears to be a CORS preflight request and the web application the
request maps to has the <a href="filter.html#CORS_Filter">CORS
Filter</a> enabled; and the request matches the URLPatterns for the CORS
filter mapper.
means that all requests that appear to be CORS preflight requests will
bypass authentication. If not set, the default value is
<code>never</code>.</p>
</attribute>
<attribute name="alwaysUseSession" required="false">
<p>Should a session always be used once a user is authenticated? This
may offer some performance benefits since the session can then be used
to cache the authenticated Principal, hence removing the need to
authenticate the user on every request. This will also help with clients
that assume that the server will cache the authenticated user. However
there will also be the performance cost of creating and GC'ing the
session. For an alternative solution see
<code>noKeepAliveUserAgents</code>. If not set, the default value of
<code>false</code> will be used.</p>
</attribute>
<attribute name="applyJava8u40Fix" required="false">
<p>A fix introduced in Java 8 update 40 (
<a href="https://bugs.openjdk.java.net/browse/JDK-8048194">JDK-8048194</a>)
onwards broke SPNEGO authentication for IE with Tomcat running on
Windows 2008 R2 servers. This option enables a work-around that allows
SPNEGO authentication to continue working. The work-around should not
impact other configurations so it is enabled by default. If necessary,
the workaround can be disabled by setting this attribute to
<code>false</code>.</p>
</attribute>
<attribute name="cache" required="false">
<p>Should we cache authenticated Principals if the request is part of an
HTTP session? If not specified, the default value of <code>true</code>
will be used.</p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.authenticator.SpnegoAuthenticator</strong>.
</p>
</attribute>
<attribute name="changeSessionIdOnAuthentication" required="false">
<p>Controls if the session ID is changed if a session exists at the
point where users are authenticated. This is to prevent session fixation
attacks. If not set, the default value of <code>true</code> will be
used.</p>
</attribute>
<attribute name="disableProxyCaching" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers but will also cause secured pages to be
cached by proxies which will almost certainly be a security issue.
<code>securePagesWithPragma</code> offers an alternative, secure,
workaround for browser caching issues. If not set, the default value of
<code>true</code> will be used.</p>
</attribute>
<attribute name="jaspicCallbackHandlerClass" required="false">
<p>Name of the Java class of the
<code>javax.security.auth.callback.CallbackHandler</code> implementation
which should be used by JASPIC. If none is specified the default
<code>org.apache.catalina.authenticator.jaspic.CallbackHandlerImpl</code>
will be used.</p>
</attribute>
<attribute name="loginConfigName" required="false">
<p>The name of the JAAS login configuration to be used to login as the
service. If not specified, the default of
<code>com.sun.security.jgss.krb5.accept</code> is used.</p>
</attribute>
<attribute name="noKeepAliveUserAgents" required="false">
<p>Some clients (not most browsers) expect the server to cache the
authenticated user information for a connection and do not resend the
credentials with every request. Tomcat will not do this unless an HTTP
session is available. A session will be available if either the
application creates one or if <code>alwaysUseSession</code> is enabled
for this Authenticator.</p>
<p>As an alternative to creating a session, this attribute may be used
to define the user agents for which HTTP keep-alive is disabled. This
means that a connection will only used for a single request and hence
there is no ability to cache authenticated user information per
connection. There will be a performance cost in disabling HTTP
keep-alive.</p>
<p>The attribute should be a regular expression that matches the entire
user-agent string, e.g. <code>.*Chrome.*</code>. If not specified, no
regular expression will be defined and no user agents will have HTTP
keep-alive disabled.</p>
</attribute>
<attribute name="securePagesWithPragma" required="false">
<p>Controls the caching of pages that are protected by security
constraints. Setting this to <code>false</code> may help work around
caching issues in some browsers by using
<code>Cache-Control: private</code> rather than the default of
<code>Pragma: No-cache</code> and <code>Cache-control: No-cache</code>.
If not set, the default value of <code>false</code> will be used.</p>
</attribute>
<attribute name="secureRandomAlgorithm" required="false">
<p>Name of the algorithm to use to create the
<code>java.security.SecureRandom</code> instances that generate session
IDs. If an invalid algorithm and/or provider is specified, the platform
default provider and the default algorithm will be used. If not
specified, the default algorithm of SHA1PRNG will be used. If the
default algorithm is not supported, the platform default will be used.
To specify that the platform default should be used, do not set the
secureRandomProvider attribute and set this attribute to the empty
string.</p>
</attribute>
<attribute name="secureRandomClass" required="false">
<p>Name of the Java class that extends
<code>java.security.SecureRandom</code> to use to generate SSO session
IDs. If not specified, the default value is
<code>java.security.SecureRandom</code>.</p>
</attribute>
<attribute name="secureRandomProvider" required="false">
<p>Name of the provider to use to create the
<code>java.security.SecureRandom</code> instances that generate SSO
session IDs. If an invalid algorithm and/or provider is specified, the
platform default provider and the default algorithm will be used. If not
specified, the platform default provider will be used.</p>
</attribute>
<attribute name="sendAuthInfoResponseHeaders" required="false">
<p>Controls whether the auth information (remote user and auth type)
shall be returned as response headers for a forwarded/proxied request.
When the <code>RemoteIpValve</code> or <code>RemoteIpFilter</code> mark
a forwarded request with the <code>Globals.REQUEST_FORWARDED_ATTRIBUTE</code>
this authenticator can return the values of
<code>HttpServletRequest.getRemoteUser()</code> and
<code>HttpServletRequest.getAuthType()</code> as response headers
<code>remote-user</code> and <code>auth-type</code> to a reverse proxy.
This is useful, e.g., for access log consistency or other decisions to make.
If not specified, the default value is <code>false</code>.</p>
</attribute>
<attribute name="storeDelegatedCredential" required="false">
<p>Controls if the user' delegated credential will be stored in
the user Principal. If available, the delegated credential will be
available to applications (e.g. for onward authentication to external
services) via the <code>org.apache.catalina.realm.GSS_CREDENTIAL</code>
request attribute. If not set, the default value of <code>true</code>
will be used.</p>
</attribute>
</attributes>
</subsection>
</subsection>
</section>
<section name="Error Report Valve">
<subsection name="Introduction">
<p>The <strong>Error Report Valve</strong> is a simple error handler
for HTTP status codes that will generate and return HTML error pages. It can
also be configured to return pre-defined static HTML pages for specific
status codes and/or exception types.</p>
<p><strong>NOTE:</strong> Disabling both showServerInfo and showReport will
only return the HTTP status code.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Error Report Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.ErrorReportValve</strong> to use the
default error report valve.</p>
</attribute>
<attribute name="errorCode.nnn" required="false">
<p>The location of the UTF-8 encoded HTML file to return for the HTTP
error code represented by <code>nnn</code>. For example,
<code>errorCode.404</code> specifies the file to return for an HTTP 404
error. The location may be relative or absolute. If relative, it must be
relative to <code>$CATALINA_BASE</code>. The special value of
<code>errorCode.0</code> may be used to define a default error page to
be used if no error page is defined for a status code. If no matching
error page is found, the default <strong>Error Report Valve</strong>
response will be returned.</p>
</attribute>
<attribute name="exceptionType.fullyQualifiedClassName" required="false">
<p>The location of the UTF-8 encoded HTML file to return if an error has
occurred and the <code>jakarta.servlet.error.exception</code> request
attribute has been set to an instance of
<code>fullyQualifiedClassName</code> or a sub-class of it. For example,
<code>errorCode.java.io.IOException</code> specifies the file to return
for an <code>IOException</code>. The location may be relative or
absolute. If relative, it must be relative to
<code>$CATALINA_BASE</code>. If no matching error page is found, the
default <strong>Error Report Valve</strong> response will be
returned.</p>
</attribute>
<attribute name="showReport" required="false">
<p>Flag to determine if the error report (custom error message and/or
stack trace) is presented when an error occurs. If set to
<code>false</code>, then the error report is not returned in the HTML
response.
Default value: <code>true</code>
</p>
</attribute>
<attribute name="showServerInfo" required="false">
<p>Flag to determine if server information is presented when an error
occurs. If set to <code>false</code>, then the server version is not
returned in the HTML response.
Default value: <code>true</code>
</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Json Error Report Valve">
<subsection name="Introduction">
<p>The <strong>Json Error Report Valve</strong> is a simple error handler
for HTTP status codes that will return Json error messages.</p>
<p>By specifying this class in <code>errorReportValveClass</code> attribute
in <code>Host</code>, it will be used instead of
<code>ErrorReportValve</code> and will return JSON response instead of HTML.
</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Json Error Report Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.JsonErrorReportValve</strong>.</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Proxy Error Report Valve">
<subsection name="Introduction">
<p>The <strong>Proxy Error Report Valve</strong> is a simple error handler
for HTTP status codes that will redirect or proxy to another location
responsible for the generation of the error report.</p>
<p>By specifying this class in <code>errorReportValveClass</code> attribute
in <code>Host</code>, it will be used instead of
<code>ErrorReportValve</code> with the default attribute values. To
configure the attributes, the valve can be defined nested in the
<code>Host</code> element.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Proxy Error Report Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.ProxyErrorReportValve</strong>.</p>
</attribute>
<attribute name="usePropertiesFile" required="false">
<p>If <code>true</code>, the valve will use the properties file
described below to associate the URLs with the status code.
If <code>false</code>, the configuration mechanism of the default
<code>ErrorReportValve</code> will be used instead. The default
value is <code>false</code>.</p>
</attribute>
<attribute name="useRedirect" required="false">
<p>If <code>true</code>, the valve will send a redirect to the URL.
If <code>false</code>, the valve will instead proxy the content from
the specified URL. The default value is <code>true</code>.</p>
</attribute>
</attributes>
</subsection>
<subsection name="Configuration">
<p>The <strong>Proxy Error Report Valve</strong> can use a resource file
<strong>ProxyErrorReportValve.properties</strong>
from the class path, where each entry is a statusCode=baseUrl. baseUrl
should not include any url parameters, statusCode, statusDescription,
requestUri, and throwable which will be automatically appended. A special
key named <code>0</code> should be used to match any other unmapped
code to a redirect or proxy URL.</p>
</subsection>
</section>
<section name="Crawler Session Manager Valve">
<subsection name="Introduction">
<p>Web crawlers can trigger the creation of many thousands of sessions as
they crawl a site which may result in significant memory consumption. This
Valve ensures that crawlers are associated with a single session - just like
normal users - regardless of whether or not they provide a session token
with their requests.</p>
<p>This Valve may be used at the <code>Engine</code>, <code>Host</code> or
<code>Context</code> level as required. Normally, this Valve would be used
at the <code>Engine</code> level.</p>
<p>If used in conjunction with Remote IP valve then the Remote IP valve
should be defined before this valve to ensure that the correct client IP
address is presented to this valve.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Crawler Session Manager Valve</strong> supports the
following configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.CrawlerSessionManagerValve</strong>.
</p>
</attribute>
<attribute name="contextAware" required="false">
<p>Flag to use the context name together with the client IP to
identify the session to re-use. Can be combined with <code>hostAware</code>.
Default value: <code>true</code>
</p>
</attribute>
<attribute name="crawlerIps" required="false">
<p>Regular expression (using <code>java.util.regex</code>) that client
IP is matched against to determine if a request is from a web crawler.
By default such regular expression is not set.</p>
</attribute>
<attribute name="crawlerUserAgents" required="false">
<p>Regular expression (using <code>java.util.regex</code>) that the user
agent HTTP request header is matched against to determine if a request
is from a web crawler. If not set, the default of
<code>.*[bB]ot.*|.*Yahoo! Slurp.*|.*Feedfetcher-Google.*</code> is used.</p>
</attribute>
<attribute name="hostAware" required="false">
<p>Flag to use the configured host together with the client IP to
identify the session to re-use. Can be combined with <code>contextAware</code>.
Default value: <code>true</code>
</p>
</attribute>
<attribute name="sessionInactiveInterval" required="false">
<p>The minimum time in seconds that the Crawler Session Manager Valve
should keep the mapping of client IP to session ID in memory without any
activity from the client. The client IP / session cache will be
periodically purged of mappings that have been inactive for longer than
this interval. If not specified the default value of <code>60</code>
will be used.</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Stuck Thread Detection Valve">
<subsection name="Introduction">
<p>This valve allows to detect requests that take a long time to process,
which might indicate that the thread that is processing it is stuck.
Additionally it can optionally interrupt such threads to try and unblock
them.</p>
<p>When such a request is detected, the current stack trace of its thread is
written to Tomcat log with a WARN level.</p>
<p>The IDs and names of the stuck threads are available through JMX in the
<code>stuckThreadIds</code> and <code>stuckThreadNames</code> attributes.
The IDs can be used with the standard Threading JVM MBean
(<code>java.lang:type=Threading</code>) to retrieve other information
about each stuck thread.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Stuck Thread Detection Valve</strong> supports the
following configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.StuckThreadDetectionValve</strong>.
</p>
</attribute>
<attribute name="threshold" required="false">
<p>Minimum duration in seconds after which a thread is considered stuck.
Default is 600 seconds. If set to 0, the detection is disabled.</p>
<p>Note: since the detection (and optional interruption) is done in the
background thread of the Container (Engine, Host or Context) declaring
this Valve, the threshold should be higher than the
<code>backgroundProcessorDelay</code> of this Container.</p>
</attribute>
<attribute name="interruptThreadThreshold" required="false">
<p>Minimum duration in seconds after which a stuck thread should be
interrupted to attempt to "free" it.</p>
<p>Note that there's no guarantee that the thread will get unstuck.
This usually works well for threads stuck on I/O or locks, but is
probably useless in case of infinite loops.</p>
<p>Default is -1 which disables the feature. To enable it, the value
must be greater or equal to <code>threshold</code>.</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Semaphore Valve">
<subsection name="Introduction">
<p>The <strong>Semaphore Valve</strong> is able to limit the number of
concurrent request processing threads.</p>
<p><strong>org.apache.catalina.valves.SemaphoreValve</strong> provides
methods which may be overridden by a subclass to customize behavior:</p>
<ul>
<li><b><code>controlConcurrency</code></b> may be overridden to add
conditions;</li>
<li><b><code>permitDenied</code></b> may be overridden to add error handling
when a permit isn't granted.</li>
</ul>
</subsection>
<subsection name="Attributes">
<p>The <strong>Semaphore Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="block" required="false">
<p>Flag to determine if a thread is blocked until a permit is available.
The default value is <strong>true</strong>.</p>
</attribute>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.SemaphoreValve</strong>.</p>
</attribute>
<attribute name="concurrency" required="false">
<p>Concurrency level of the semaphore. The default value is
<strong>10</strong>.</p>
</attribute>
<attribute name="fairness" required="false">
<p>Fairness of the semaphore. The default value is
<strong>false</strong>.</p>
</attribute>
<attribute name="highConcurrencyStatus" required="false">
<p>The error status code which will be returned to the client, if the
value is positive, when a permit cannot be acquired from the
sepmaphore. The default value is <strong>-1</strong>, which will mean
no error status will be sent back.</p>
</attribute>
<attribute name="interruptible" required="false">
<p>Flag to determine if a thread may be interrupted until a permit is
available. The default value is <strong>false</strong>.</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Health Check Valve">
<subsection name="Introduction">
<p>The <strong>Health Check Valve</strong> responds to
cloud orchestrators health checks.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Health Check Valve</strong> supports the
following configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.HealthCheckValve</strong>.</p>
</attribute>
<attribute name="path" required="false">
<p>Path by the cloud orchestrators health check logic. If the valve
is associated with a context, then this will be relative to the context
path. Otherwise, the valve will match the full URI.
The default value is <strong>/health</strong>.</p>
</attribute>
<attribute name="checkContainersAvailable" required="false">
<p>If <code>true</code> the valve will check if its associated
container and all its children are available.
The default value is <strong>true</strong>.</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Persistent Valve">
<subsection name="Introduction">
<p>The <strong>PersistentValve</strong> that implements per-request session
persistence. It is intended to be used with non-sticky load-balancers.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>PersistentValve Valve</strong> supports the
following configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.PersistentValve</strong>.</p>
</attribute>
<attribute name="filter" required="false">
<p>For known file extensions or urls, you can use this filter pattern to
notify the valve that no session required during this request. If the
request matches this filter pattern, the valve assumes there has been no
need to restore session. An example filter would look like <code>
filter=".*\.gif|.*\.js|.*\.jpeg|.*\.jpg|.*\.png|.*\.htm|.*\.html|.*\.css|.*\.txt"</code>.
The filter is a regular expression using
<code>java.util.regex</code>.</p>
</attribute>
<attribute name="semaphoreAcquireUninterruptibly" required="false">
<p>Flag to determine if a thread that blocks waiting for the per session
Semaphore should do so uninterruptibly. Has no effect if
<strong>semaphoreBlockOnAcquire</strong> is <code>false</code>. If not
specified, the default value of <code>true</code> will be used.</p>
</attribute>
<attribute name="semaphoreBlockOnAcquire" required="false">
<p>Flag to determine if a thread that wishes to acquire the per session
Semaphore when it is held by another thread should block until it can
acquire the Semaphore or if the waiting request be rejected. If not
specified, the default value of <code>true</code> will be used.</p>
</attribute>
<attribute name="semaphoreFairness" required="false">
<p>Flag to determine if the per session Semaphore will grant requests
for the Semaphore in the same order they were received. Has no effect if
<strong>semaphoreBlockOnAcquire</strong> is <code>false</code>. If not
specified, the default value of <code>true</code> will be used.</p>
</attribute>
</attributes>
</subsection>
</section>
<section name="Parameter Limit Valve">
<subsection name="Introduction">
<p>The <strong>Parameter Limit Valve</strong> is used to limit the number of parameters allowed in HTTP requests
overriding the Connector's value. The valve can be configured with specific limits for certain URL patterns.
Requests exceeding the defined parameter limits will result in an HTTP 400 Bad Request error.</p>
</subsection>
<subsection name="Attributes">
<p>The <strong>Parameter Limit Valve</strong> supports the following
configuration attributes:</p>
<attributes>
<attribute name="className" required="true">
<p>Java class name of the implementation to use. This MUST be set to
<strong>org.apache.catalina.valves.ParameterLimitValve</strong>.</p>
</attribute>
<attribute name="resourcePath" required="false">
<p>A file consisting of line-separated URL patterns and their respective parameter limits.
Each entry should follow the format <code>urlPattern=limit</code>.
The valve will apply the limit defined for a URL pattern when a request matches that pattern.
If no pattern matches, the Connector's limit will be used.
For example:
<code>
/api/.*=100
/admin/.*=50
/upload/.*=30,5,1024
</code>
Default value: <code>parameter_limit.config</code>.
It must be placed in the Host configuration folder or in the WEB-INF folder of the web application.
</p>
<p>If a single integer is provided, it is used for <code>maxParameterCount</code>. If three integers are
provided, they are applied to <code>maxParameterCount</code>, <code>maxPartCount</code> and
<code>maxPartHeaderSize</code> respectively.
</p>
</attribute>
</attributes>
</subsection>
</section>
</body>
</document>
|