I was trying to create an recommendation system for youtube. For that I would need to access the web server log files. Is it possible?
Related
I am developing a Cloud storage Web app with NodeJS.
I'have two servers, one for handling Web and another for Storage. When the user uploads the file, it goes to the storage server and I save the link for accessing the file to the database. The User Schema has Names to folder and the file links in them so that I can render in the front end. Now the problem is I want to create a server for every user so that they can access their drive directly through WebDAV or FTPS, SFTP etc. So that they can mount on their devices.
Can anyone help me which NodeJS or NPM tool I can use to create an FTP, WebDAV server that can create folder from user Schema and show files from file links.
Is there a limitation like that or can i use their media services from anywhere? I looked up but couldn't find enough information about this.
I want to upload videos in a web project and then displaying them on pages.
There is no need to host complete web application on azure to get media services. But it is suggestable to host the site on azure. Because to cover the latency.
Host the website or application wherever you need and create media service on azure. Upload videos on the platform and tag the specific video URL's and Credentials to your app service and connect it to existing azure services. That will connect the videos to the specific location in the web page.
I have a Azure Linux web app. I can upload files via FTP (for example test.html) but then accessing them (https://mysite.azurewebsites.net/test.html) gives a 404. The files are there, and I can see them in kudu console, but I get 404? I even deleted the "hostingstart" file yet going to https://mysite.azurewebsites.net still returns the hostingstart file content? Do I need to trigger a "redeploy" somehow? The documentation I have read just says "upload the files via ftp to /home/site/wwwroot which is what I have done.
???
I turned on all logging, but was getting nothing meaningful. I raised a support ticket and got a response that explains it. A .Net platform on Linux cannot serve static content;
response from Microsoft:
Analysis:
http://mysite.azurewebsites.net/
Is a Linux web app with the custom image
DOTNETCORE|3.1
Hosted inside a B1 App Service Plan
The requests are served by a single Small web worker.
This type of web app expects .Net Core content not plain HTML. If you want to deploy plain HTML you can use a Windows web app or a Linux web app with PHP, as on a Windows web app there is IIS and on PHP there is Apache as web servers that by default are able to serve static content also.
for static content you can also use only your storage to deploy.
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-static-website
I have an legacy Azure web app (with no application log), and I need to know from where the requests are coming to our server. Usually we get it from Server log. How can I get the server log for an Azure Web app.
Go to App Service logs under your app service, enable web server logging there with storage or file system.
And about how to access the log file, check this Access log files. If you choose storage blob just go to your storage account check the file, if you choose file system, just go to /LogFiles/http/RawLogs/ in your kudu site or download the zip file with https://<app-name>.scm.azurewebsites.net/api/dump.
How can I upload html content to website - I need to specifye internet address in my desctop client and I dont know what address should I type - this
publishUrl="ftp://waws-prod-am2-001.ftp.azurewebsites.windows.net/site/wwwroot
or something else.How can I list site content? Is there any microsoft text editor exist - than it will be easier to publish using publish profile.
Now sure what desktop client you are using. Based on your above info it seems you are using Windows Azure Websites so I will give you simple idea to upload HTML content from FTP client.
What you really need is install a FTP client in your desktop (i.e. FileZilla) and then setup your Azure Website FTP location.
Please follow my blog below to setup your FileZilla FTP client first:
http://blogs.msdn.com/b/avkashchauhan/archive/2012/06/19/windows-azure-website-uploading-downloading-files-over-ftp-and-collecting-diagnostics-logs.aspx
Once your FTP client is configured and you can see the Website folder you can just drag and drop HTML files from local machine to Windows Azure Websites.