Questions tagged [web-hosting]

Web hosting is a service that provides clients with the ability to make their content web-accesible by renting server space in a company's data center.

Web hosting is a service that provides Web users with online systems for storing information, images, video, or any content accessible via the web—often in the form of web pages.

The scope of web hosting services varies greatly. The most basic is web page and small-scale file hosting, where files can be uploaded via File Transfer Protocol (FTP) or a Web interface. The files are usually delivered to the Web "as is" or with minimal processing. Many Internet service providers (ISPs) offer this service free to subscribers. Individuals and organizations may also obtain Web page hosting from alternative service providers. Personal web site hosting is typically free, advertisement-sponsored, or inexpensive. Business web site hosting often has a higher expense.

Web hosts often make extensive use of virtual machines and various open source platforms (e.g. LAMP) to provide the level of server abstraction, ease-of-use, and minimized cost that make modern web hosting feasible.

3135 questions
32
votes
3 answers

link a Google Domain to Amazon ec2 server

I am using an Amazon EC2 instance to serve a node.js app. I recently purchased a domain name through Google Domains and I want to use that domain name to access my node.js app. The Google Domains console allows you to forward your domain traffic to…
Dsel
  • 1,027
  • 3
  • 13
  • 22
27
votes
3 answers

How does Google App Engine compare to web hosting plans?

Google App Engine offers free quotas of 1 GB outbound traffic per day and 6.5 CPU-hours (based on a 1.2 GHz Intel x86 processor) per day. How do those free quotas compare to web hosting plans? For example, the traffic supported by the free quotas --…
Continuation
  • 12,722
  • 20
  • 82
  • 106
25
votes
4 answers

Alternatives to GitHub Pages?

So I'm doing research for a project and I am wondering if there exists any web applications that offer similar services to GitHub Pages. As in, a free (or cheap) web host where the collaborators push to a central git repository to make the changes…
eriksson
  • 299
  • 1
  • 3
  • 6
24
votes
6 answers

When to use a key-value store for web development?

When would someone use a key-value (Redis, memcache, etc) store for web development? An actual use case would be most helpful. My confusion is that a simple database seems so much more functional because, to my understanding, it can do everything a…
Jacjoi
  • 345
  • 1
  • 3
  • 7
24
votes
4 answers

Static web hosting on AWS S3 giving me "403 permission denied"

I will appreciate if anyone can point me out where I'm doing wrong. see below steps I have a domain name in route53. Based on the domain name, I have created a bucket name ( for sake of my question lets stick to bucket and domain name as abc.nl)…
change198
  • 1,647
  • 3
  • 21
  • 60
23
votes
8 answers

ASP.NET Core hosting - 500 internal server error

I am trying to publish as ASP.NET Core project with a hosting provider that supports ASP.NET Core. I am getting 500 Internal Server Error which I believe is very common. So I searched through the internet and various forums and then I checked the…
user6542823
  • 1,396
  • 2
  • 14
  • 24
22
votes
6 answers

URL rewriting in PHP without htaccess

Website is running on a web host where we don't have access to a .htaccess file. However, I want to do URL rewriting for user friendly URLs. e.g. Original URL www.example.com/file?q=name expected URL www.example.com/file/name
Vivart
  • 14,900
  • 6
  • 36
  • 74
20
votes
7 answers

Good Options for Java Developer who needs Inexpensive Web Hosting

As a programmer with limited experience, and interest, in server management, what are some good options for having space available online that makes getting to the actual development and deployment of Java web applications simple? Needs: - ability…
walnutmon
  • 5,873
  • 7
  • 42
  • 57
19
votes
6 answers

Request Entity Too Large

I get this message, Request Entity Too Large The requested resource /index.php does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit. I set php_value post_max_size 50M php_value…
Oleksandr IY
  • 2,783
  • 6
  • 32
  • 53
19
votes
2 answers

How to setup CNAME for Amazon S3 at Namecheap

I am using amazon S3 to host one of my static sites and wanted to link it to my domain name (domainname.co.uk). So I went into namecheap account-all host records and did something like this, However, It still doesnt work and throws 404 when I go…
vinny
  • 529
  • 4
  • 7
  • 16
18
votes
4 answers

How to set the default website page through htaccess?

I am currently setting up a website from a client on his hosting account. The website address and for some reason doesn't default to .php files (that is: index.php). If I put index.php and there is no index.html file I receive the following error:…
perpetual_dream
  • 1,046
  • 5
  • 18
  • 51
15
votes
3 answers

How to host a reveal.js presentation

I'm new to all this web development things (I only know to do things in local). I did a presentation using reveal.js and I would like to be able to see it online (on my phone for example). I know that I should host it but I don't really know how to…
mel
  • 2,730
  • 8
  • 35
  • 70
15
votes
2 answers

How do you get an existing domain you own to point to Azure's servers?

By default, the naming conventions of Azure websites/webapps are somesubdomain.cloudapp.net and somesubdomain.azurewebsites.net. If I have an existing website that I have currently hosted through, say GoDaddy, and the website is www.mysite.com, how…
Mike Marks
  • 10,017
  • 17
  • 69
  • 128
14
votes
7 answers

What are the reasons for a "simple" website not to choose Cloud Based Hosting?

I have been doing some catching up lately by reading about cloud hosting. For a client that has about the same characteristics as StackOverflow (Windows stack, same amount of visitors), I need to set up a hosting environment. Stackoverflow went…
Gideon
  • 18,251
  • 5
  • 45
  • 64
14
votes
3 answers

Hosting interactive jupyter notebook on private website

I currently run a personal website using Wordpress (but hosted on siteground) that is a set of engineering study guides. I would like to move towards making these study guides interactive (i.e. refreshing graphics based on sliders, doing basic…