Skip to content
CAMPUX Cloud Bootcamp
Field notes · Hosting
App Service plan tiers

Azure App Service Plans Explained: Free, Basic, Standard, Premium

By Captain O8 min read

The tier you pick decides what your app can do — not just how fast it runs. Most confusion around App Service pricing comes from treating the ladder as a speed dial when it is really a feature ladder, where whole capabilities switch on at each rung.

New to cloud? CAMPUX is a free, build-first course. Start here →

The short version: pick Free (F1) to try something throwaway, Basic (B1) for a small always-on app on your own domain, Standard (S1) the moment you want autoscale or a staging slot, and Premium v3 (P1v3) when you need private networking, real headroom, or up to 20 slots. An App Service plan is the compute your apps run on, and its tier sets both the hardware and the feature set. The trap is that people compare tiers on vCPU and RAM alone. The numbers matter, but the reason you upgrade is almost always a feature that does not exist on the tier below — Always On, deployment slots, autoscale, or VNet integration. This note lays out the ladder, then names the exact cliffs that force each step.

Azure App Service plan tiers as a staircase: Free, Basic, Standard, Premium — each opens a feature cliff.F1Free / SharedB1BasicS1StandardP1v3Premium v3Always Onslots + autoscaleVNet + more power
Figure 6 — The tiers are a staircase, and the reason to climb is features, not raw speed. Free is for a demo; Basic buys Always On and a custom domain with SSL; Standard opens deployment slots and autoscale; Premium adds VNet integration and headroom. Buy the step where the feature you need first appears.

Quick map: what each tier is for

Here is the whole ladder in one breath, so you can stop reading if you already know which rung you need:

Everything below is the detail behind that list — what you actually get and give up at each rung, and the four features that draw a hard line through the ladder.

Free and Shared (F1 / D1): what you can and can't do

The Free (F1) and Shared (D1) tiers run your app on a VM shared with other customers' apps, with a CPU quota measured in minutes per day. That is fine for what they are meant for: trying a framework, hosting a demo, or checking that a deploy pipeline works end to end. You get roughly 1 GB of storage and 60 minutes of CPU per day on F1, and Azure serves your app on the default *.azurewebsites.net hostname.

What you cannot do is the whole point. There is no Always On, so the app unloads after about 20 minutes of no traffic and the next visitor eats a cold start. There is no custom domain and no TLS binding, so you are stuck on the azurewebsites.net URL. There are no deployment slots, no autoscale, and no scale-out at all. Treat Free as a sandbox, not a home for anything a real user will see.

Basic (B1–B3): the first "real" tier

Basic is where App Service starts behaving like production hosting. Your app moves onto dedicated VM instances that only your plan uses, so a noisy neighbor stops being your problem. Three things switch on that Free does not have, and they are the reasons most people leave Free:

Storage jumps to about 10 GB, and the instances (B1 through B3) get progressively more vCPU and RAM. What Basic still lacks is the two features that define Standard: autoscale and deployment slots. You can add instances, but only by hand, and you have no staging slot to swap into production. For a small internal tool or a low-traffic site on its own domain, Basic is genuinely enough. For anything you release often, it is one rung short.

You do not upgrade App Service tiers for speed. You upgrade them for a feature the rung below simply does not have.

Standard (S1–S3): autoscale, slots, backups

Standard is the tier most production web apps should start on. It keeps everything Basic has and adds the three capabilities that make releases and traffic spikes manageable:

Storage rises to about 50 GB. If you had to name a single default tier for a team shipping a web app on Azure, S1 is the honest answer — it is the first rung where the platform does the operational work you would otherwise do by hand.

Premium v3 (P1v3+): VNet, performance, reserved savings

Premium v3 is the current performance tier. The instances use faster processors, SSD-backed storage, and memory-optimized options, and P1v3 starts at 2 vCPU and 8 GB of RAM — noticeably more headroom than S1's single vCPU and roughly 1.75 GB. Beyond raw specs, three things pull people up to Premium:

That last point catches people out. On-demand, Premium v3 looks expensive next to Standard. For an app that never turns off, a reservation can flip the math so the faster tier costs less over the year.

The gap: the feature cliffs that force an upgrade

Forget the vCPU numbers for a second. In practice, four features draw hard lines through the ladder, and hitting any one of them is what actually forces you up a tier:

Read the table below with those four cliffs in mind. Every jump you make is usually one of them, not a stopwatch.

Feature F1 (Free) B1 (Basic) S1 (Standard) P1v3 (Premium v3)
Compute typeSharedDedicatedDedicatedDedicated
vCPU / RAMShared / ~1 GB1 / ~1.75 GB1 / ~1.75 GB2 / 8 GB
Storage~1 GB~10 GB~50 GB~250 GB
Max instances1 (no scale-out)3 (manual)10 (autoscale)30 (autoscale)
AutoscaleNoNoYesYes
Deployment slotsNoneNoneUp to 5Up to 20
Always OnNoYesYesYes
Custom domain + SSLNoYesYesYes
VNet integrationNoNoNoYes
Price framingFreeLow, flatMid, per instanceHigher; reservations cut it

Numbers like storage and instance ceilings move over time and vary by region and OS, so treat them as the current shape of the ladder rather than a contract. Check the pricing page for the exact figure in your region before you commit a budget. The order of the ladder and the feature cliffs are the stable part, and those are what you reason with.

A cost trap worth naming

Every app on a plan shares that plan's instances and cost. Stacking several small apps on one S1 plan is cheap and sensible. But if one of those apps gets busy and you scale the plan out, you pay for the bigger footprint across all the apps sharing it — even the idle ones. When one app has spiky, independent load, give it its own plan instead of scaling a shared one.

Questions people also ask

What is the difference between Basic and Standard App Service plans?

Basic gives you dedicated compute, custom domains, free SSL, and Always On, and it scales out to 3 instances — but it has no deployment slots, no autoscale, and no backups. Standard adds autoscale, up to 5 deployment slots, scheduled backups, and scale-out to 10 instances. If you release with a staging slot or want the platform to add instances under load, you need Standard, not Basic.

Does the Free App Service tier support custom domains?

No. The Free (F1) tier runs on shared compute and only serves your app on the default *.azurewebsites.net hostname. You cannot map your own domain or bind a TLS certificate on Free or on the Shared (D1) tier. Custom domains and free managed SSL begin at the Basic tier, which is the first dedicated-compute tier.

What is Always On in Azure App Service?

Always On keeps your app loaded in memory instead of letting it unload after about 20 minutes of no traffic. Without it, the first request after idle waits for a cold start, and background jobs stop when the app unloads. Always On is available on Basic and higher — it is not available on the Free or Shared tiers, which is one of the main reasons production apps leave Free.

How many apps can share one App Service plan?

You can put many apps on a single plan — there is no fixed per-plan app cap you hit in normal use — but they all share the same instances, CPU, and memory. Density is limited by resources, not a hard count: a P1v3 plan can host several small apps comfortably, while one busy app may want the plan to itself. Every app on the plan scales together when you scale the plan.

Is P1v3 worth it over S1?

It is worth it when you need any of three things: VNet integration to reach private resources, more headroom (P1v3 starts at 2 vCPU and 8 GB RAM versus S1's 1 vCPU and roughly 1.75 GB), or up to 20 deployment slots and scale-out to 30 instances. P1v3 also supports reserved-instance and savings-plan pricing, which cuts the sticker cost for steady workloads. For a small always-on app with no private networking, S1 is fine.

Further reading — the Microsoft docs
Your next class · free
You've read the idea. Class 11 — App Service is where you build it, hands-on — no account needed.Start Class 11 →
Captain O
Founder & instructor · CAMPUX Cloud Engineering Bootcamp
Drilled in Class 11B — App Service. Start with what Azure App Service is, or back to all field notes →