GithubHelp home page GithubHelp logo

url base path about darkwire.io HOT 5 CLOSED

darkwire avatar darkwire commented on May 20, 2024
url base path

from darkwire.io.

Comments (5)

seripap avatar seripap commented on May 20, 2024

Haven't tested this- but in theory, if you're using nginx you can proxy pass an endpoint to the node app.

server {
        listen 80;
        location /darkwire {
             proxy_pass http://localhost:3000
        }
}

from darkwire.io.

0xded093 avatar 0xded093 commented on May 20, 2024

I tried setting nginx like that but doesn't work, I think the app has to know that every request must include /darkwire.
I tried also to edit app.js routes to that path but something broke (think static stuff doesn't load)

from darkwire.io.

alanfriedman avatar alanfriedman commented on May 20, 2024

How about this solution?

Same as above, except add a trailing slash:

server {
    listen 80;

    location = /darkwire {
        return 302 /darkwire/;
    }

    location /darkwire/ {
         proxy_pass http://localhost:3000
    }
}

from darkwire.io.

 avatar commented on May 20, 2024

I met this problem too, but already solved.
Here is what I modified:

src/app.js
  line 39: return res.redirect(`/darkwire/${id}`);
  line 62: return res.redirect('/darkwire/');
src/js/app.js
  line 12: this._roomId = window.location.pathname.length ? '/'+window.location.pathname.split('/').filter(function(el){ return !!el; }).pop() : null;
  line 14: this._socket = io(this._roomId,{path:'/darkwire/socket.io'});
  line 23: $('input.share-text').val(document.location.protocol + '//' + document.location.host + '/darkwire' + this._roomId);

** darkwire version 1.5.8

from darkwire.io.

seripap avatar seripap commented on May 20, 2024

Will be fixed in #26

from darkwire.io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.