I want to deploy the laravel web application into live? - laravel

I had developed the web application in laravel framework, now i need to deploy the application into live, for that how to build and deploy on windows server. please help me for this.

You can deployed you app in a Iaas such as Digital Ocean but in Linux. Digital Ocean with LAMP tutorial. You will deploy in Linux but it is cheaper than a Iaas on windows.
If you can create a VM on VirtualBox, you will handle with Digital Ocean.

Related

How to determine if an asp.net app is running on an azure vm

We have an asp.net app that gets deployed to both On-Prem and on Azure VMs. We are trying to figure out how to configure the app so that when deployed on an Azure VM it will use Azure App Configuration Service, but when deployed On-Prem it will continue to use the settings in the config files?
How can we know on app start up whether or not we are deployed on an Azure VM?
If you can, I would recommend you add a special environment variable when you provision your Azure VM or deploy your application. If not, you may use Azure Instance Metadata Service to tell the code is running in Azure VMs.

Can docker containers be run on live web servers?

I read that heroku uses what they call cedar containers in their infrastructure which allows developers to use containerisation in their apps hosted on heroku. If I'm not mistaken that is, I'm new to all this.
Is is possible to run docker containers on web servers and integrate them as part of your website? Or at least, come up with a method of converting docker containers into Cedar containers or something similar which are compatible with the web server?
On your own private server I see no reason why you couldn't do this, but when it comes to commercial web hosting services, where does this stand?
You are not running "docker on web server", but running "docker with web server".
I mean, you supposed to package your app into the docker with some kind of web server.
After it, you can call your app in this container as regular web site. Also, you can host this container in some docker host (for example, docker cloud, sloppy.io,...)
As for heroku, may be you'll find this helpful

Hosting a Web Application

I have a quick question regarding hosting web applications. I've recently started getting into hacking so I just wanted to understand them a little more.
I am aware that to host websites you need to pay for a domain name, as well as a hosting service. So let's say you buy a domain from GoDaddy, and then you buy hosting from Dreamhost.
Let's say I'm making a web application in Node.js, then I need to buy a cloud platform such as heroku, correct?
So do I need to buy a domain, hosting service, AND a cloud platform in order to launch a web application?
Cloud hosting is just another kind of hosting versus stuff like Dreamhost.
You likely can't run something like Node.js on Dreamhost's shared hosting, but you could on one of their VPS/dedicated servers. Heroku's just easier for that sort of thing. You'd in most cases pick either Dreamhost or Heroku, not both.

Can I host a RAP application (Rich Ajax Platform) in Heroku?

I'm thinking of creating an application (RAP). I would like to know if I can host in Heroku or if you know a hosting provider that offers this service.
You can host anything that can run on Linux as long as you're not having to persist anything on the filesystem and you have a buildpack which suits your needs.
Once those are in place, the world is your oyster.

How do I access my web app from the Internet?

I have deployed and run my app in glassfish v3 on my vps (running on windows web server). How do attach my app to my IP adress? (my domain is at use at the time so I need to access by IP)
I Managed to work it in glassfish app running!

Resources