Changeset 24900 in main
- Timestamp:
- 03/29/22 18:29:06 (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/hi/trunk/src/main/apache_httpd_configs/wordpress_ibis/prod/httpd.conf
r24886 r24900 172 172 #LoadModule socache_memcache_module modules/mod_socache_memcache.so 173 173 #LoadModule socache_redis_module modules/mod_socache_redis.so 174 # LoadModule socache_shmcb_module modules/mod_socache_shmcb.so174 ######LoadModule socache_shmcb_module modules/mod_socache_shmcb.so 175 175 #LoadModule speling_module modules/mod_speling.so 176 # LoadModule ssl_module modules/mod_ssl.so176 #####LoadModule ssl_module modules/mod_ssl.so 177 177 #LoadModule status_module modules/mod_status.so 178 178 #LoadModule substitute_module modules/mod_substitute.so … … 228 228 # 229 229 #ServerName www.example.com:80 230 ServerName 10.0.0.108 230 #ServerName test.hhdw.org 231 ServerName 10.0.1.108 231 232 232 233 # … … 320 321 # container, that host's errors will be logged there and not here. 321 322 # 322 ErrorLog "logs/error.log" 323 ###ErrorLog "logs/error.log" 324 325 # For use of rotatelogs, see https://httpd.apache.org/docs/2.4/programs/rotatelogs.html 326 # am using rotate every day and keep 7 days, could keep more. 327 # you could also rotate at midnight and create a log with date, but keeping only x logs will not work with that 328 ### NOTE: -c not permitted in windows, may be other options also not permitted, see explanation in next section log_conf_module 329 # -v is verbose output for debugging, BUT... 330 # try first with access, if you try with Errorlog, and you have something wrong, no log will be produced. 331 # note daily is 86400, testing is 60 (every minute) 332 # Next line is for testing log rotation every 20 seconds, keep 7 files, verbose output 333 # ErrorLog "|bin/rotatelogs.exe -l -v -n 7 logs/error.log 20" 334 # Next line is for production, rotate every day, keep 14 logs 335 ErrorLog "|bin/rotatelogs.exe -l -f -v -n 14 logs/error.log 86400" 323 336 324 337 # … … 327 340 # alert, emerg. 328 341 # 329 LogLevel warn 342 ####LogLevel debug ssl:trace8 proxy:trace8 343 344 LogLevel debug 345 330 346 331 347 <IfModule log_config_module> … … 349 365 # logged therein and *not* in this file. 350 366 # 351 CustomLog "logs/access.log" common367 ####CustomLog "logs/access.log" common 352 368 353 369 # … … 355 371 # (Combined Logfile Format) you can use the following directive. 356 372 # 357 #CustomLog "logs/access.log" combined 373 ####CustomLog "logs/access.log" combined 374 375 # For use of rotatelogs, see https://httpd.apache.org/docs/2.4/programs/rotatelogs.html 376 # am using rotate every day and keep 7 days, could keep more. 377 # you could also rotate at midnight and create a log with date, but keeping only x logs will not work with that 378 ### NOTE: -c not permitted in windows, may be other options also not permitted, see explanation in next section log_conf_module 379 # -v is verbose output for debugging, BUT... 380 # try first with access, if you try with Errorlog, and you have something wrong, no log will be produced. 381 # note daily is 86400, testing is 60 (every minute) 382 # Next line is for testing log rotation every 20 seconds, keep 7 files, verbose output 383 384 CustomLog "|bin/rotatelogs.exe -l -f -v -n 14 logs/access.log 86400" common 385 386 387 358 388 </IfModule> 359 389 … … 545 575 546 576 # Secure (SSL/TLS) connections 547 # Include conf/extra/httpd-ssl.conf577 ######Include conf/extra/httpd-ssl.conf 548 578 # 549 579 # Note: The following must must be present to support … … 556 586 </IfModule> 557 587 558 #LogLevel warn proxy:debug559 LogLevel info560 561 588 562 589 ############### IBIS Proxy, located webapps/report ##################### 590 563 591 564 592 #Next line is more for forward, but it doesnot affect reverse … … 569 597 ProxyPassReverse "/report/" "http://127.0.0.1:8080/report/" 570 598 ###ProxyPassReverseCookiePath "/hhdw-view" "/report" 599 600
Note: See TracChangeset
for help on using the changeset viewer.