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
|
/*
* Phusion Passenger - http://www.modrails.com/
* Copyright (c) 2010 Phusion
*
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <algorithm>
#include <cstdlib>
/* ap_config.h checks whether the compiler has support for C99's designated
* initializers, and defines AP_HAVE_DESIGNATED_INITIALIZER if it does. However,
* g++ does not support designated initializers, even when ap_config.h thinks
* it does. Here we undefine the macro to force httpd_config.h to not use
* designated initializers. This should fix compilation problems on some systems.
*/
#include <ap_config.h>
#undef AP_HAVE_DESIGNATED_INITIALIZER
#include "Configuration.hpp"
#include "Utils.h"
#include <LoggingAgent/FilterSupport.h>
/* The APR headers must come after the Passenger headers. See Hooks.cpp
* to learn why.
*/
#include <apr_strings.h>
using namespace Passenger;
extern "C" module AP_MODULE_DECLARE_DATA passenger_module;
namespace Passenger { ServerConfig serverConfig; }
#define MERGE_THREEWAY_CONFIG(field) \
config->field = (add->field == DirConfig::UNSET) ? base->field : add->field
#define MERGE_STR_CONFIG(field) \
config->field = (add->field == NULL) ? base->field : add->field
#define MERGE_STRING_CONFIG(field) \
config->field = (add->field.empty()) ? base->field : add->field
#define MERGE_INT_CONFIG(field) \
config->field = (add->field ## Specified) ? add->field : base->field; \
config->field ## Specified = base->field ## Specified || add->field ## Specified
#define DEFINE_DIR_STR_CONFIG_SETTER(functionName, fieldName) \
static const char * \
functionName(cmd_parms *cmd, void *pcfg, const char *arg) { \
DirConfig *config = (DirConfig *) pcfg; \
config->fieldName = arg; \
return NULL; \
}
#define DEFINE_DIR_INT_CONFIG_SETTER(functionName, fieldName, integerType, minValue) \
static const char * \
functionName(cmd_parms *cmd, void *pcfg, const char *arg) { \
DirConfig *config = (DirConfig *) pcfg; \
char *end; \
long int result; \
\
result = strtol(arg, &end, 10); \
if (*end != '\0') { \
string message = "Invalid number specified for "; \
message.append(cmd->directive->directive); \
message.append("."); \
\
char *messageStr = (char *) apr_palloc(cmd->temp_pool, \
message.size() + 1); \
memcpy(messageStr, message.c_str(), message.size() + 1); \
return messageStr; \
} else if (result < minValue) { \
string message = "Value for "; \
message.append(cmd->directive->directive); \
message.append(" must be greater than or equal to " #minValue "."); \
\
char *messageStr = (char *) apr_palloc(cmd->temp_pool, \
message.size() + 1); \
memcpy(messageStr, message.c_str(), message.size() + 1); \
return messageStr; \
} else { \
config->fieldName = (integerType) result; \
config->fieldName ## Specified = true; \
return NULL; \
} \
}
#define DEFINE_DIR_THREEWAY_CONFIG_SETTER(functionName, fieldName) \
static const char * \
functionName(cmd_parms *cmd, void *pcfg, const char *arg) { \
DirConfig *config = (DirConfig *) pcfg; \
if (arg) { \
config->fieldName = DirConfig::ENABLED; \
} else { \
config->fieldName = DirConfig::DISABLED; \
} \
return NULL; \
}
#define DEFINE_SERVER_STR_CONFIG_SETTER(functionName, fieldName) \
static const char * \
functionName(cmd_parms *cmd, void *dummy, const char *arg) { \
serverConfig.fieldName = arg; \
return NULL; \
}
#define DEFINE_SERVER_BOOLEAN_CONFIG_SETTER(functionName, fieldName) \
static const char * \
functionName(cmd_parms *cmd, void *dummy, int arg) { \
serverConfig.fieldName = arg; \
return NULL; \
}
#define DEFINE_SERVER_INT_CONFIG_SETTER(functionName, fieldName, integerType, minValue) \
static const char * \
functionName(cmd_parms *cmd, void *pcfg, const char *arg) { \
char *end; \
long int result; \
\
result = strtol(arg, &end, 10); \
if (*end != '\0') { \
string message = "Invalid number specified for "; \
message.append(cmd->directive->directive); \
message.append("."); \
\
char *messageStr = (char *) apr_palloc(cmd->temp_pool, \
message.size() + 1); \
memcpy(messageStr, message.c_str(), message.size() + 1); \
return messageStr; \
} else if (result < minValue) { \
string message = "Value for "; \
message.append(cmd->directive->directive); \
message.append(" must be greater than or equal to " #minValue "."); \
\
char *messageStr = (char *) apr_palloc(cmd->temp_pool, \
message.size() + 1); \
memcpy(messageStr, message.c_str(), message.size() + 1); \
return messageStr; \
} else { \
serverConfig.fieldName = (integerType) result; \
return NULL; \
} \
}
template<typename T> static apr_status_t
destroy_config_struct(void *x) {
delete (T *) x;
return APR_SUCCESS;
}
template<typename Collection, typename T> static bool
contains(const Collection &coll, const T &item) {
typename Collection::const_iterator it;
for (it = coll.begin(); it != coll.end(); it++) {
if (*it == item) {
return true;
}
}
return false;
}
extern "C" {
static DirConfig *
create_dir_config_struct(apr_pool_t *pool) {
DirConfig *config = new DirConfig();
apr_pool_cleanup_register(pool, config, destroy_config_struct<DirConfig>, apr_pool_cleanup_null);
return config;
}
void *
passenger_config_create_dir(apr_pool_t *p, char *dirspec) {
DirConfig *config = create_dir_config_struct(p);
config->enabled = DirConfig::UNSET;
config->autoDetectRails = DirConfig::UNSET;
config->autoDetectRack = DirConfig::UNSET;
config->autoDetectWSGI = DirConfig::UNSET;
config->environment = NULL;
config->appRoot = NULL;
config->user = NULL;
config->group = NULL;
config->spawnMethod = DirConfig::SM_UNSET;
config->frameworkSpawnerTimeout = -1;
config->appSpawnerTimeout = -1;
config->maxRequests = 0;
config->maxRequestsSpecified = false;
config->minInstances = 1;
config->minInstancesSpecified = false;
config->highPerformance = DirConfig::UNSET;
config->useGlobalQueue = DirConfig::UNSET;
config->resolveSymlinksInDocRoot = DirConfig::UNSET;
config->allowEncodedSlashes = DirConfig::UNSET;
config->statThrottleRate = 0;
config->statThrottleRateSpecified = false;
config->restartDir = NULL;
config->uploadBufferDir = NULL;
config->friendlyErrorPages = DirConfig::UNSET;
config->unionStationSupport = DirConfig::UNSET;
config->bufferResponse = DirConfig::UNSET;
/*************************************/
return config;
}
void *
passenger_config_merge_dir(apr_pool_t *p, void *basev, void *addv) {
DirConfig *config = create_dir_config_struct(p);
DirConfig *base = (DirConfig *) basev;
DirConfig *add = (DirConfig *) addv;
config->enabled = (add->enabled == DirConfig::UNSET) ? base->enabled : add->enabled;
config->railsBaseURIs = base->railsBaseURIs;
for (set<string>::const_iterator it(add->railsBaseURIs.begin()); it != add->railsBaseURIs.end(); it++) {
config->railsBaseURIs.insert(*it);
}
config->rackBaseURIs = base->rackBaseURIs;
for (set<string>::const_iterator it(add->rackBaseURIs.begin()); it != add->rackBaseURIs.end(); it++) {
config->rackBaseURIs.insert(*it);
}
MERGE_THREEWAY_CONFIG(autoDetectRails);
MERGE_THREEWAY_CONFIG(autoDetectRack);
MERGE_THREEWAY_CONFIG(autoDetectWSGI);
MERGE_STR_CONFIG(environment);
MERGE_STR_CONFIG(appRoot);
MERGE_STRING_CONFIG(appGroupName);
MERGE_STR_CONFIG(user);
MERGE_STR_CONFIG(group);
config->spawnMethod = (add->spawnMethod == DirConfig::SM_UNSET) ? base->spawnMethod : add->spawnMethod;
config->frameworkSpawnerTimeout = (add->frameworkSpawnerTimeout == -1) ? base->frameworkSpawnerTimeout : add->frameworkSpawnerTimeout;
config->appSpawnerTimeout = (add->appSpawnerTimeout == -1) ? base->appSpawnerTimeout : add->appSpawnerTimeout;
MERGE_INT_CONFIG(maxRequests);
MERGE_INT_CONFIG(minInstances);
MERGE_THREEWAY_CONFIG(highPerformance);
MERGE_THREEWAY_CONFIG(useGlobalQueue);
MERGE_INT_CONFIG(statThrottleRate);
MERGE_STR_CONFIG(restartDir);
MERGE_STR_CONFIG(uploadBufferDir);
MERGE_STRING_CONFIG(unionStationKey);
config->unionStationFilters = base->unionStationFilters;
for (vector<string>::const_iterator it = add->unionStationFilters.begin(); it != add->unionStationFilters.end(); it++) {
if (!contains(config->unionStationFilters, *it)) {
config->unionStationFilters.push_back(*it);
}
}
MERGE_THREEWAY_CONFIG(resolveSymlinksInDocRoot);
MERGE_THREEWAY_CONFIG(allowEncodedSlashes);
MERGE_THREEWAY_CONFIG(friendlyErrorPages);
MERGE_THREEWAY_CONFIG(unionStationSupport);
MERGE_THREEWAY_CONFIG(bufferResponse);
/*************************************/
return config;
}
/*************************************************
* Passenger settings
*************************************************/
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_root, root)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_ruby, ruby)
DEFINE_SERVER_INT_CONFIG_SETTER(cmd_passenger_log_level, logLevel, unsigned int, 0)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_debug_log_file, debugLogFile)
DEFINE_SERVER_INT_CONFIG_SETTER(cmd_passenger_max_pool_size, maxPoolSize, unsigned int, 1)
DEFINE_SERVER_INT_CONFIG_SETTER(cmd_passenger_max_instances_per_app, maxInstancesPerApp, unsigned int, 0)
DEFINE_SERVER_INT_CONFIG_SETTER(cmd_passenger_pool_idle_time, poolIdleTime, unsigned int, 0)
DEFINE_SERVER_BOOLEAN_CONFIG_SETTER(cmd_passenger_user_switching, userSwitching)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_default_user, defaultUser)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_default_group, defaultGroup)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_temp_dir, tempDir)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_union_station_gateway_address, unionStationGatewayAddress)
DEFINE_SERVER_INT_CONFIG_SETTER(cmd_union_station_gateway_port, unionStationGatewayPort, int, 1)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_union_station_gateway_cert, unionStationGatewayCert)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_union_station_proxy_address, unionStationProxyAddress)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_union_station_proxy_type, unionStationProxyType)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_analytics_log_dir, analyticsLogDir)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_analytics_log_user, analyticsLogUser)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_analytics_log_group, analyticsLogGroup)
DEFINE_SERVER_STR_CONFIG_SETTER(cmd_passenger_analytics_log_permissions, analyticsLogPermissions)
static const char *
cmd_passenger_pre_start(cmd_parms *cmd, void *pcfg, const char *arg) {
serverConfig.prestartURLs.insert(arg);
return NULL;
}
DEFINE_DIR_INT_CONFIG_SETTER(cmd_passenger_min_instances, minInstances, unsigned long, 0)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_use_global_queue, useGlobalQueue)
DEFINE_DIR_INT_CONFIG_SETTER(cmd_passenger_max_requests, maxRequests, unsigned long, 0)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_high_performance, highPerformance)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_enabled, enabled)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_environment, environment)
DEFINE_DIR_INT_CONFIG_SETTER(cmd_passenger_stat_throttle_rate, statThrottleRate, unsigned long, 0)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_passenger_app_root, appRoot)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_passenger_app_group_name, appGroupName)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_passenger_user, user)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_passenger_group, group)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_passenger_restart_dir, restartDir)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_passenger_upload_buffer_dir, uploadBufferDir)
DEFINE_DIR_STR_CONFIG_SETTER(cmd_union_station_key, unionStationKey)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_resolve_symlinks_in_document_root, resolveSymlinksInDocRoot)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_allow_encoded_slashes, allowEncodedSlashes)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_friendly_error_pages, friendlyErrorPages)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_union_station_support, unionStationSupport)
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_passenger_buffer_response, bufferResponse)
static const char *
cmd_passenger_spawn_method(cmd_parms *cmd, void *pcfg, const char *arg) {
DirConfig *config = (DirConfig *) pcfg;
if (strcmp(arg, "smart") == 0) {
config->spawnMethod = DirConfig::SM_SMART;
} else if (strcmp(arg, "smart-lv2") == 0) {
config->spawnMethod = DirConfig::SM_SMART_LV2;
} else if (strcmp(arg, "conservative") == 0) {
config->spawnMethod = DirConfig::SM_CONSERVATIVE;
} else {
return "PassengerSpawnMethod may only be 'smart', 'smart-lv2' or 'conservative'.";
}
return NULL;
}
static const char *
cmd_union_station_filter(cmd_parms *cmd, void *pcfg, const char *arg) {
DirConfig *config = (DirConfig *) pcfg;
if (strlen(arg) == 0) {
return "UnionStationFilter may not be set to the empty string";
} else {
try {
FilterSupport::Filter f(arg);
config->unionStationFilters.push_back(arg);
return NULL;
} catch (const SyntaxError &e) {
string message = "Syntax error in Union Station filter: ";
message.append(e.what());
return strdup(message.c_str());
}
}
}
/*************************************************
* Rails-specific settings
*************************************************/
static const char *
cmd_rails_base_uri(cmd_parms *cmd, void *pcfg, const char *arg) {
DirConfig *config = (DirConfig *) pcfg;
if (strlen(arg) == 0) {
return "RailsBaseURI may not be set to the empty string";
} else if (arg[0] != '/') {
return "RailsBaseURI must start with a slash (/)";
} else if (strlen(arg) > 1 && arg[strlen(arg) - 1] == '/') {
return "RailsBaseURI must not end with a slash (/)";
} else {
config->railsBaseURIs.insert(arg);
return NULL;
}
}
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_rails_auto_detect, autoDetectRails)
static const char *
cmd_rails_framework_spawner_idle_time(cmd_parms *cmd, void *pcfg, const char *arg) {
DirConfig *config = (DirConfig *) pcfg;
char *end;
long int result;
result = strtol(arg, &end, 10);
if (*end != '\0') {
return "Invalid number specified for RailsFrameworkSpawnerIdleTime.";
} else if (result < 0) {
return "Value for RailsFrameworkSpawnerIdleTime must be at least 0.";
} else {
config->frameworkSpawnerTimeout = result;
return NULL;
}
}
static const char *
cmd_rails_app_spawner_idle_time(cmd_parms *cmd, void *pcfg, const char *arg) {
DirConfig *config = (DirConfig *) pcfg;
char *end;
long int result;
result = strtol(arg, &end, 10);
if (*end != '\0') {
return "Invalid number specified for RailsAppSpawnerIdleTime.";
} else if (result < 0) {
return "Value for RailsAppSpawnerIdleTime must be at least 0.";
} else {
config->appSpawnerTimeout = result;
return NULL;
}
}
/*************************************************
* Rack-specific settings
*************************************************/
static const char *
cmd_rack_base_uri(cmd_parms *cmd, void *pcfg, const char *arg) {
DirConfig *config = (DirConfig *) pcfg;
if (strlen(arg) == 0) {
return "RackBaseURI may not be set to the empty string";
} else if (arg[0] != '/') {
return "RackBaseURI must start with a slash (/)";
} else if (strlen(arg) > 1 && arg[strlen(arg) - 1] == '/') {
return "RackBaseURI must not end with a slash (/)";
} else {
config->rackBaseURIs.insert(arg);
return NULL;
}
}
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_rack_auto_detect, autoDetectRack)
/*************************************************
* WSGI-specific settings
*************************************************/
DEFINE_DIR_THREEWAY_CONFIG_SETTER(cmd_wsgi_auto_detect, autoDetectWSGI)
/*************************************************
* Obsolete settings
*************************************************/
static const char *
cmd_rails_spawn_server(cmd_parms *cmd, void *pcfg, const char *arg) {
fprintf(stderr, "WARNING: The 'RailsSpawnServer' option is obsolete. "
"Please specify 'PassengerRoot' instead. The correct value was "
"given to you by 'passenger-install-apache2-module'.");
fflush(stderr);
return NULL;
}
static const char *
cmd_rails_allow_mod_rewrite(cmd_parms *cmd, void *pcfg, int arg) {
fprintf(stderr, "WARNING: The 'RailsAllowModRewrite' option is obsolete: "
"Phusion Passenger now fully supports mod_rewrite. "
"Please remove this option from your configuration file.");
fflush(stderr);
return NULL;
}
typedef const char * (*Take1Func)();
typedef const char * (*FlagFunc)();
const command_rec passenger_commands[] = {
// Passenger settings.
AP_INIT_TAKE1("PassengerRoot",
(Take1Func) cmd_passenger_root,
NULL,
RSRC_CONF,
"The Passenger root folder."),
AP_INIT_TAKE1("PassengerRuby",
(Take1Func) cmd_passenger_ruby,
NULL,
RSRC_CONF,
"The Ruby interpreter to use."),
AP_INIT_TAKE1("PassengerLogLevel",
(Take1Func) cmd_passenger_log_level,
NULL,
RSRC_CONF,
"Passenger log verbosity."),
AP_INIT_TAKE1("PassengerDebugLogFile",
(Take1Func) cmd_passenger_debug_log_file,
NULL,
RSRC_CONF,
"Passenger debug log file."),
AP_INIT_TAKE1("PassengerMaxPoolSize",
(Take1Func) cmd_passenger_max_pool_size,
NULL,
RSRC_CONF,
"The maximum number of simultaneously alive application instances."),
AP_INIT_TAKE1("PassengerMinInstances",
(Take1Func) cmd_passenger_min_instances,
NULL,
OR_LIMIT | ACCESS_CONF | RSRC_CONF,
"The minimum number of application instances to keep when cleaning idle instances."),
AP_INIT_TAKE1("PassengerMaxInstancesPerApp",
(Take1Func) cmd_passenger_max_instances_per_app,
NULL,
RSRC_CONF,
"The maximum number of simultaneously alive application instances a single application may occupy."),
AP_INIT_TAKE1("PassengerPoolIdleTime",
(Take1Func) cmd_passenger_pool_idle_time,
NULL,
RSRC_CONF,
"The maximum number of seconds that an application may be idle before it gets terminated."),
AP_INIT_FLAG("PassengerUseGlobalQueue",
(FlagFunc) cmd_passenger_use_global_queue,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Enable or disable Passenger's global queuing mode mode."),
AP_INIT_FLAG("PassengerUserSwitching",
(FlagFunc) cmd_passenger_user_switching,
NULL,
RSRC_CONF,
"Whether to enable user switching support."),
AP_INIT_TAKE1("PassengerUser",
(Take1Func) cmd_passenger_user,
NULL,
ACCESS_CONF | RSRC_CONF,
"The user that Ruby applications must run as."),
AP_INIT_TAKE1("PassengerGroup",
(Take1Func) cmd_passenger_group,
NULL,
ACCESS_CONF | RSRC_CONF,
"The group that Ruby applications must run as."),
AP_INIT_TAKE1("PassengerDefaultUser",
(Take1Func) cmd_passenger_default_user,
NULL,
RSRC_CONF,
"The user that Ruby applications must run as when user switching fails or is disabled."),
AP_INIT_TAKE1("PassengerDefaultGroup",
(Take1Func) cmd_passenger_default_group,
NULL,
RSRC_CONF,
"The group that Ruby applications must run as when user switching fails or is disabled."),
AP_INIT_TAKE1("PassengerTempDir",
(Take1Func) cmd_passenger_temp_dir,
NULL,
RSRC_CONF,
"The temp directory that Passenger should use."),
AP_INIT_TAKE1("PassengerMaxRequests",
(Take1Func) cmd_passenger_max_requests,
NULL,
OR_LIMIT | ACCESS_CONF | RSRC_CONF,
"The maximum number of requests that an application instance may process."),
AP_INIT_FLAG("PassengerHighPerformance",
(FlagFunc) cmd_passenger_high_performance,
NULL,
OR_ALL,
"Enable or disable Passenger's high performance mode."),
AP_INIT_FLAG("PassengerEnabled",
(FlagFunc) cmd_passenger_enabled,
NULL,
OR_ALL,
"Enable or disable Phusion Passenger."),
AP_INIT_TAKE1("PassengerAppGroupName",
(Take1Func) cmd_passenger_app_group_name,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"The temp directory that Passenger should use."),
AP_INIT_TAKE1("PassengerStatThrottleRate",
(Take1Func) cmd_passenger_stat_throttle_rate,
NULL,
OR_LIMIT | ACCESS_CONF | RSRC_CONF,
"Limit the number of stat calls to once per given seconds."),
AP_INIT_TAKE1("PassengerRestartDir",
(Take1Func) cmd_passenger_restart_dir,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"The directory in which Passenger should look for restart.txt."),
AP_INIT_TAKE1("PassengerAppRoot",
(Take1Func) cmd_passenger_app_root,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"The application's root directory."),
AP_INIT_TAKE1("PassengerUploadBufferDir",
(Take1Func) cmd_passenger_upload_buffer_dir,
NULL,
OR_OPTIONS,
"The directory in which upload buffer files should be placed."),
AP_INIT_TAKE1("UnionStationKey",
(Take1Func) cmd_union_station_key,
NULL,
OR_ALL,
"The Union Station key."),
AP_INIT_TAKE1("UnionStationFilter",
(Take1Func) cmd_union_station_filter,
NULL,
OR_ALL,
"A filter for Union Station data."),
AP_INIT_FLAG("PassengerBufferResponse",
(FlagFunc) cmd_passenger_buffer_response,
NULL,
OR_ALL,
"Whether to enable buffering response."),
AP_INIT_FLAG("PassengerResolveSymlinksInDocumentRoot",
(FlagFunc) cmd_passenger_resolve_symlinks_in_document_root,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Whether to resolve symlinks in the DocumentRoot path"),
AP_INIT_FLAG("PassengerAllowEncodedSlashes",
(FlagFunc) cmd_passenger_allow_encoded_slashes,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Whether to support encoded slashes in the URL"),
AP_INIT_FLAG("PassengerFriendlyErrorPages",
(FlagFunc) cmd_passenger_friendly_error_pages,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Whether to display friendly error pages when something goes wrong"),
AP_INIT_TAKE1("PassengerSpawnMethod",
(Take1Func) cmd_passenger_spawn_method,
NULL,
RSRC_CONF,
"The spawn method to use."),
AP_INIT_TAKE1("UnionStationGatewayAddress",
(Take1Func) cmd_union_station_gateway_address,
NULL,
RSRC_CONF,
"The Union Station Gateway host name."),
AP_INIT_TAKE1("UnionStationGatewayPort",
(Take1Func) cmd_union_station_gateway_port,
NULL,
RSRC_CONF,
"The Union Station Gateway port number."),
AP_INIT_TAKE1("UnionStationGatewayCert",
(Take1Func) cmd_union_station_gateway_cert,
NULL,
RSRC_CONF,
"The Union Station Gateway certificate."),
AP_INIT_TAKE1("UnionStationProxyAddress",
(Take1Func) cmd_union_station_proxy_address,
NULL,
RSRC_CONF,
"The address of the proxy that should be used for sending data to Union Station."),
AP_INIT_TAKE1("UnionStationProxyType",
(Take1Func) cmd_union_station_proxy_type,
NULL,
RSRC_CONF,
"The type of the proxy that should be used for sending data to Union Station."),
AP_INIT_TAKE1("PassengerAnalyticsLogDir",
(Take1Func) cmd_passenger_analytics_log_dir,
NULL,
RSRC_CONF,
"Directory in which to store analytics logs."),
AP_INIT_TAKE1("PassengerAnalyticsLogUser",
(Take1Func) cmd_passenger_analytics_log_user,
NULL,
RSRC_CONF,
"The owner of analytics files."),
AP_INIT_TAKE1("PassengerAnalyticsLogGroup",
(Take1Func) cmd_passenger_analytics_log_group,
NULL,
RSRC_CONF,
"The group of analytics files."),
AP_INIT_TAKE1("PassengerAnalyticsLogPermissions",
(Take1Func) cmd_passenger_analytics_log_permissions,
NULL,
RSRC_CONF,
"The permissions of analytics files."),
AP_INIT_TAKE1("PassengerPreStart",
(Take1Func) cmd_passenger_pre_start,
NULL,
RSRC_CONF,
"Prestart the given web applications during startup."),
AP_INIT_FLAG("UnionStationSupport",
(Take1Func) cmd_union_station_support,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Whether to enable logging through Union Station."),
/*****************************/
// Rails-specific settings.
AP_INIT_TAKE1("RailsBaseURI",
(Take1Func) cmd_rails_base_uri,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Reserve the given URI to a Rails application."),
AP_INIT_FLAG("RailsAutoDetect",
(FlagFunc) cmd_rails_auto_detect,
NULL,
RSRC_CONF,
"Whether auto-detection of Ruby on Rails applications should be enabled."),
AP_INIT_TAKE1("RailsEnv",
(Take1Func) cmd_environment,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"The environment under which a Rails app must run."),
AP_INIT_TAKE1("RailsFrameworkSpawnerIdleTime",
(Take1Func) cmd_rails_framework_spawner_idle_time,
NULL,
RSRC_CONF,
"The maximum number of seconds that a framework spawner may be idle before it is shutdown."),
AP_INIT_TAKE1("RailsAppSpawnerIdleTime",
(Take1Func) cmd_rails_app_spawner_idle_time,
NULL,
RSRC_CONF,
"The maximum number of seconds that an application spawner may be idle before it is shutdown."),
// Rack-specific settings.
AP_INIT_TAKE1("RackBaseURI",
(Take1Func) cmd_rack_base_uri,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"Reserve the given URI to a Rack application."),
AP_INIT_FLAG("RackAutoDetect",
(FlagFunc) cmd_rack_auto_detect,
NULL,
RSRC_CONF,
"Whether auto-detection of Rack applications should be enabled."),
AP_INIT_TAKE1("RackEnv",
(Take1Func) cmd_environment,
NULL,
OR_OPTIONS | ACCESS_CONF | RSRC_CONF,
"The environment under which a Rack app must run."),
// WSGI-specific settings.
AP_INIT_FLAG("PassengerWSGIAutoDetect",
(FlagFunc) cmd_wsgi_auto_detect,
NULL,
RSRC_CONF,
"Whether auto-detection of WSGI applications should be enabled."),
// Backwards compatibility options.
AP_INIT_TAKE1("RailsRuby",
(Take1Func) cmd_passenger_ruby,
NULL,
RSRC_CONF,
"Deprecated option."),
AP_INIT_TAKE1("RailsMaxPoolSize",
(Take1Func) cmd_passenger_max_pool_size,
NULL,
RSRC_CONF,
"Deprecated option."),
AP_INIT_TAKE1("RailsMaxInstancesPerApp",
(Take1Func) cmd_passenger_max_instances_per_app,
NULL,
RSRC_CONF,
"Deprecated option"),
AP_INIT_TAKE1("RailsPoolIdleTime",
(Take1Func) cmd_passenger_pool_idle_time,
NULL,
RSRC_CONF,
"Deprecated option."),
AP_INIT_FLAG("RailsUserSwitching",
(FlagFunc) cmd_passenger_user_switching,
NULL,
RSRC_CONF,
"Deprecated option."),
AP_INIT_TAKE1("RailsDefaultUser",
(Take1Func) cmd_passenger_default_user,
NULL,
RSRC_CONF,
"Deprecated option."),
AP_INIT_TAKE1("RailsSpawnMethod",
(Take1Func) cmd_passenger_spawn_method,
NULL,
RSRC_CONF,
"Deprecated option."),
// Obsolete options.
AP_INIT_TAKE1("RailsSpawnServer",
(Take1Func) cmd_rails_spawn_server,
NULL,
RSRC_CONF,
"Obsolete option."),
AP_INIT_FLAG("RailsAllowModRewrite",
(FlagFunc) cmd_rails_allow_mod_rewrite,
NULL,
RSRC_CONF,
"Whether custom mod_rewrite rules should be allowed."),
{ NULL }
};
} // extern "C"
|