httpfs-env.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #!/bin/bash
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License. See accompanying LICENSE file.
  14. #
  15. # Set httpfs specific environment variables here.
  16. # Settings for the Embedded Tomcat that runs HttpFS
  17. # Java System properties for HttpFS should be specified in this variable
  18. #
  19. # export CATALINA_OPTS=
  20. # HttpFS logs directory
  21. #
  22. # export HTTPFS_LOG=${HTTPFS_HOME}/logs
  23. # HttpFS temporary directory
  24. #
  25. # export HTTPFS_TEMP=${HTTPFS_HOME}/temp
  26. # The HTTP port used by HttpFS
  27. #
  28. # export HTTPFS_HTTP_PORT=14000
  29. # The Admin port used by HttpFS
  30. #
  31. # export HTTPFS_ADMIN_PORT=`expr ${HTTPFS_HTTP_PORT} + 1`
  32. # The hostname HttpFS server runs on
  33. #
  34. # export HTTPFS_HTTP_HOSTNAME=`hostname -f`
  35. # Indicates if HttpFS is using SSL
  36. #
  37. # export HTTPFS_SSL_ENABLED=false
  38. # The location of the SSL keystore if using SSL
  39. #
  40. # export HTTPFS_SSL_KEYSTORE_FILE=${HOME}/.keystore
  41. # The password of the SSL keystore if using SSL
  42. #
  43. # export HTTPFS_SSL_KEYSTORE_PASS=password