Advertisement
Guest User

Caddyfile

a guest
May 8th, 2021
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. # The Caddyfile is an easy way to configure your Caddy web server.
  2. #
  3. # Unless the file starts with a global options block, the first
  4. # uncommented line is always the address of your site.
  5. #
  6. # To use your own domain name (with automatic HTTPS), first make
  7. # sure your domain's A/AAAA DNS records are properly pointed to
  8. # this machine's public IP, then replace the line below with your
  9. # domain name.
  10.  
  11. jellymmeirolas.ddnss.de {
  12. reverse_proxy localhost:8096
  13. }
  14.  
  15. syncmmeirolas.ddnss.de {
  16. reverse_proxy localhost:8384 {
  17. header_up Host localhost
  18. }
  19. }
  20.  
  21. # Another common task is to set up a reverse proxy:
  22. # reverse_proxy localhost:8080
  23.  
  24. # Or serve a PHP site through php-fpm:
  25. # php_fastcgi localhost:9000
  26.  
  27. # Refer to the Caddy docs for more information:
  28. # https://caddyserver.com/docs/caddyfile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement