Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate relative urls in server.js #1598

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

Generate relative urls in server.js

This change will allow using server behind a reverse proxy.
  • Loading branch information
last-g committed Mar 21, 2019
commit 0ebbb043b77996ada5d3e2cc5105f43cd5b8353f
@@ -142,7 +142,7 @@ function Server (torrent, opts = {}) {
res.statusCode = 200
res.setHeader('Content-Type', 'text/html')

const listHtml = torrent.files.map((file, i) => `<li><a download="${file.name}" href="/${i}/${file.name}">${file.path}</a> (${file.length} bytes)</li>`).join('<br>')
const listHtml = torrent.files.map((file, i) => `<li><a download="${file.name}" href="${i}/${file.name}">${file.path}</a> (${file.length} bytes)</li>`).join('<br>')

const html = getPageHTML(
`${torrent.name} - WebTorrent`,
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.