Skip to content
  • Ralph Giles's avatar
    Run apache2_mod_svn in a container. · 052ae053
    Ralph Giles authored
    Make svn.xiph.org available agail by proxying traffic to
    a container running the server:
    
        docker build -t svn .
        docker run --rm -d \
          --name svn \
          -v /var/svn/xiph:/var/svn \
          -p 127.0.0.1:7376:80 \
          svn
    
    Then terminate tls connections in the host webserver and proxy
    requests to localhost:7376.
    052ae053