Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Pls help me out.
I made a wordpress webpage in Google cloud platform.
Couple of days back I tried to link my domain with the webpage.
But as I am not an expert.
From day before yesterday, I am not been able to login neither my wordpress admin page nor my webpage is opening.
And in Google cloud platform, wordpress url and site address changed and even the external IP..
But how to retrieve my previous IP and my previous work..
Anyhow I need to retrieve my work.
Kindly look into it.
My wordpress ip which is not working- 35.221.56.166
Thanks in advance.
As mentiones here, the VMs sometimes have maintenance which means that the intance can be restarted. If you didn't assign an static IP to the VM, the VM will have an ephemeral IP that is relased when the VM is restarted or stoped.
Having said that, the IP your VM had was released and you cannot recover it.
I suggest to reserve an static IP for your VM and use the new IP to connect to your VM, etc.
Here's a similar question.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
How do I set up port forwarding on my router so that I can access a local webserver outside the LAN network?
I have a local python flask application running at the following URL on a RaspberryPi, which is only accessible when on the same LAN at the following url:
192.168.1.11:5000
I'm trying to set up port forwarding on my NETGEAR Nighthawk M1 Mobile Hotspot Router by entering the following into the router form for Port Forwarding. My Public IP is 107.77.241.11 so I tried the following to no avail.
I also tried the following based on this question, which also did not work
How can I access my python flask app with port forwarding?
In my case i had to specify local details, not the public ip in case of urls
don't choose port 80, it might be blocked by another service, 5000 works ok
did you add host='0.0.0.0' in your Flask app?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to host a website built with Django on one's personal machine? If so, how?
I built a small Django site, my first, based on a tutorial, and I want to make it live, so that I can see how it looks on other computers/devices, and allow friends/family to check it out. I have no way of purchasing a server.
A way to do what you're asking for is by using ngrok on your machine (using homebrew on a mac, brew install ngrok)
You would need to sign up at https://ngrok.com/signup to get an authtoken to password protect your site.
Install the authtoken: ngrok authtoken your_authtoken_here
To run your django app in your terminal, you would run (note that you could specify a different port; Django runs on 8000 by default):
python manage.py runserver
And then in another terminal window you would run:
ngrok http -auth='username:password' 8000
You'll see a screen with a line that looks like this:
Forwarding http://sfd98sdf.ngrok.io -> localhost:8000
You can then visit http://sfd98sdf.ngrok.io to view your site.
You would have to keep your machine running these processes for this to work.
Note that as commenters have said, this isn't the best or most secure way, but it's a quick way to do exactly what you want to do.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I have installed Liferay on the AWS server and integrated with Amazon S3. I am able to access Liferay on the server by giving localhost:8080 but I am not able to access it from my laptop by giving Hostname:8080(Public IP is not static). Can anyone tell me why I am not able to access Liferay from my laptop. Is there any other steps to follow?
If you want to access your server with hostname, you have to front your Liferay app server with http server (apache web server).
Add following into portal-ext.properties file
web.server.http.port=80
Go to LR control panel -> site -> Site-setting -> Site URL -> Virtual Host. Set your virtual host here. e.g. www.abc.com
install apache web server, if you haven't.
Add following into apache's 000-default.conf file
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
restart apache.
pass host entry on your local system.
there you go.... it's done, you don't event need to access with port 8080 either.
Hope it'll help.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm just wondering whether anyone out there has managed to connect up a ColdFusion based CMS to a CDN for content hosted within it ?
We currently have our own CMS and we make use of CKEditor and CKFinder to display content. However, we are noticing that it might benefit from taking advantage of a CDN for static content.
What I'm wondering is how does one go about connecting a CMS to a CDN? All I've been able to find is articles on using existing wordpress modules for connecting content for websites.
Any info would be greatly appreciated.
You don't need to connect a CMS to a CDN that is not how CDNs work.
Let's say your assets are served on assets.mydomain.com to utilise a CDN you create an account with one and register a CName pointing at the CDNs servers let's say that is static.mydomain.com. On the CDN you configure assets.mydomain.com to be the origin for static.mydomain.com.
Now you reference all your assets in the HTML of your website using static.mydomain.com. This is where the CDN does its clever bit. When an asset is requested the CDN checks to see if it has it, if not it requests it from the origin and simultaneously caches it so the next time you are asked for that asset it returns it from the CDN cache.
So really to connect your CMS to the CDN as you ask is achieved by making sure that the assets are requested off of a domain you have configured as above.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I admire cloudfoundry.com, especially when deploy the application to the cloudfoundry.com system , that was able to create the subdomain for app it self , make it live on internet , so we can access it directly if we connect to internet.
I've successfully install vcap on public server paas.azure4j.us .
But when I deployed an application and an output said that it was succesfully deployed and make a subdomain like 'myapp.azure4j.us' .
I understand that we can found sub domain configuration on cloud_controller.yml and deployment.json .
CMIIW
But when I access it directly from web browser ,why it doesnt work ?
So I have to set it on my /etc/hosts or add subdomain on
DNS manager of provider to access it.
My Question is , how cloudfoundry.com make them client app's subdomain directly connected to internet when them newly deploy it ??
Are you sure the DNS for azure4j.us is set up correctly for this? There seems to be a wild-card domain record set up, if I open myapp.azure4j.us, it doesn't appear to go to a VCAP instance.