-
Hello, I'm using golem to write my app. For some reason I would like to mask localhost address and reaplace it with other one. So e.g. my address is |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey, Thanks for using This is not a question related to Let me try and do a quick explanation.
If you want to make your application available to the world, you'll need two things:
Once you have launched the application on the remote server, you can ask your domain provider (the company selling you the domain name) to point to your server. This is not something very complex per se but requires a bit of IT knowledge. If everything I just said sounds alien to you, I would suggest going for a on premise service like shinyapps.io :) Hope this answers your question, |
Beta Was this translation helpful? Give feedback.
-
Hey Colin, thanks for your answer. To be honest I'll probably serve my app on IIS server (I guess it's possible but seems quite hard, anyways I've heard it's less complex on Linux). The reason why I'm asking is that first I need to present my test app in front of some people, don't want them to see I'm running my app locally (may sound strange but I have my own reasons). That's why I was looking for a solution to somehow 'mask' my local address with some other. I was wondering if there's any possibility for doing so. |
Beta Was this translation helpful? Give feedback.
Hey,
Thanks for using
{golem}
.This is not a question related to
{golem}
per se, but will concern any web application you want to serve to the world.Let me try and do a quick explanation.
127.0.0.1
refers to your local computer. This127.0.0.1
is your computer when you run an app, and it will be my computer if I run the app on my computer.If you want to make your application available to the world, you'll need two things:
myappmadewithgolem.com
URL that belongs to youOnce you have launched t…