How do create a server with a file on it?

utech 21 Reputation points
2020-06-06T13:42:36.943+00:00

Hi,

I am pretty new to Azure but I need some help with something

I need to create a server that contains a file for a project.

The URL should be along the lines of "http(s)://servername/file.bin" to request the file.

The file is very small (2mb) and is a binary file

Any help would be greatly appreciated

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
35,947 questions
0 comments No comments
{count} votes

Accepted answer
  1. Malleswara Reddy, G 1,631 Reputation points
    2020-06-06T17:20:24.513+00:00

    Hi,

    I am assuming and answering this as it does not provide much info. If my below answer does not answer, please post more information.

    1) Blob storage. You can add the file onto the storage with permission required, so that you can get the URL with filename.
    2) PAAS - You can use app services to upload the file and you can get the URL in the expected format. This is basically to deploy websites, web services but it matches for your requirement
    3) IAAS - By using VM, you can upload the file and get the URL but I don't recommend this approach as your requirement looks simple

    Regards,
    Eshwar

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. utech 21 Reputation points
    2020-06-06T17:59:33.81+00:00

    Hi,

    Thanks for the info on the blob storage even though I was extremely vague. It was all I needed to get pointed in the right direction

    If you want to see the instructions I followed to host the file goto:

    storage-quickstart-blobs-portal

    Thanks for your help :) - Ryan

    0 comments No comments