Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # /etc/httpd/conf.d/rundeck.conf
  2.  
  3. <IfModule mod_proxy.c>
  4. CustomLog /var/log/httpd/access_log combined
  5. ErrorLog /var/log/httpd/proxy/rundeck/error_log
  6. CustomLog /var/log/httpd/proxy/rundeck/access_log combined
  7. ProxyPreserveHost On
  8. ProxyRequests Off
  9. ProxyPass /rundeck http://localhost:4440/rundeck
  10. ProxyPassReverse /rundeck http://localhost:4440/rundeck
  11.  
  12. # Local reverse proxy authorization override
  13. <Proxy http://localhost:4440/rundeck*>
  14. Order deny,allow
  15. Allow from all
  16. </Proxy>
  17. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement