About 2,280,000 results
Open links in new tab
  1. Configure Flask dev server to be visible across the network

    The --host option to flask run, or the host parameter to app.run(), controls what address the development server listens to. By default it runs on localhost, change it to flask run --host=0.0.0.0 (or …

  2. How to redirect my sub-domain to localhost:5000 in Https with Nginx?

    Nov 23, 2021 · I have to redirect all the http and https traffic when my users search "hermes.my-domain.com" to the 5000 port, on my nginx serveur, where my app is. "hermes" is the name of my …

  3. Access server bound to localhost:5000 from different computer

    Jun 5, 2010 · The web server is binding to localhost:5000 so I am able to access my application by going to localhost:5000 in my browser. I would like to be able to access the server from another …

  4. How to change the port number for ASP.NET Core app?

    Building on @Abdus Salam Azad's answer... In Visual Studio 2022 if you right click an ASP.NET Core Web API project for example, you have access to this UI where you can set up ASPNETCORE …

  5. Issues with ProxyPass and ProxyPassReverse when proxying to …

    7 I am attempting to use ProxyPass and ProxyPassReverse to proxy requests through Apache to another server instance that is bound to the localhost on a different TCP port that the Vhost exists …

  6. App served up to port 5000 "can't be found" on Chrome running on ...

    Apr 25, 2019 · I set up the environment and have the script running and via a few diagnostics have confirmed it is being served up to port 5000. However, when I navigate to localhost/5000 in Chrome …

  7. how to proxy_pass api path to port with nginx - Stack Overflow

    myuser@myserver [conf.d]# curl localhost:5000 Hello, World!myuser@myserver [conf.d]# but with an api client don't, and proxy_pass from the root path to the port 3000 works fine in the browser and the …

  8. Pushing to local docker registry gives connection reset error

    Apr 5, 2016 · 1 Solved the issue: Had to run with docker run -d -p 127.0.0.1:6000:5000. Not using localhost ensured that ipv4 was used (I'm pretty sure it was used otherwise but at least now it shows …

  9. Remotely connect to .net core self hosted web api

    Press Ctrl+C to shut down. Going to the browser and typing in http://localhost:5000/ping results in a successful return of the current time. However going to a remote machine (same LAN) and trying to …

  10. connect() failed (111: Connection refused) while connecting to upstream

    Oct 1, 2011 · Set node HTTP server to listen strictly for ipv4 by including localhost as host: server.listen(5000, 'localhost'); Removed any ipv6 listen directives (listen [::]:80; or listen