Questions tagged [web-applications]
371 questions
1
vote
1 answer
Google Cloud Java API calls from a servlet: blocking or connection concerns?
Just trying out the Java API for GCP (the compute lib). I'm making calls to the API from a servlet ...
Compute.Instances.Insert insert = compute.instances().insert("tester", "us-easts1-db", instance);
Operation o = insert.execute();
The docs read…

Patrick Grant
- 13
- 4
1
vote
0 answers
Azure Cloud Service / IIS 8 does not reach client browser after long process to generate PDF report
I'm running a .net web app on Azure Cloud Service, Cloud Service provides a VM running Windows 2012 R2 OS with IIS 8.
Issue occurs when client browser goes to a page to trigger a PDF report generation. Report generation takes about 5-6 minutes. Once…

neualex
- 11
- 2
1
vote
1 answer
AWS Application Load Balancer - processed bytes metric
I have just finished setting up Application Load Balancer on AWS.
I am trying to figure why my Processed Bytes metric is giving such a high number (and as a result Consumed Capacity Units go up and it becomes expensive). How is this actually…

Mateusz Drankowski
- 13
- 3
1
vote
0 answers
Azure web app access through VNet with certificates on gateway
My goal is to have a Web App in a VNet which goes through a VNet gateway using certificates to grant access to the web app. My test uses a standard image in Azure (Node.js). I have followed "Configure a Point-to-Site connection to a VNet using…

KenG
- 11
- 1
1
vote
1 answer
Azure Web Application Logs to Storage Account Container
My team has a .NET (4.7) web application running in Azure. Right now there are three directories being creations on the web in the D drive - cache, temp and root. Log files are dumped here. My concern is that these log files will take up space and…

jrd1989
- 698
- 15
- 48
1
vote
0 answers
How to Set Up Application Insights from an ARM Template
I'm trying to set up an App Service, an App Service Plan, and App Insights via an Azure DevOps release pipeline.
I'm creating the three resources successfully with resource group templates, but I can't work out how to install App Insights…

Paul O'Leary
- 31
- 1
1
vote
1 answer
Handling traffic spikes for a medium scale ecommerce application
Let me first briefly describe our stack.
Single EC2 instance with 4 vCPU and 16 GB RAM running Ubuntu [m4.xlarge]
Single RDS instance with 2 vCPU and 8 GB RAM running MySQL 8 [db.m5.large]
We are using cloudfront to cache static assets
We are using…

Abhinav
- 743
- 2
- 9
- 20
1
vote
1 answer
Can i run c++ on aws elasticbeanstalk in php application
Since cloud instance is just a machine hosted remotely it should be able to behave like a local server. I have written some programs in C++ which I usually call in a PHP file through exec() function on my Windows 10 server.
For instance, I save the…

Siyad Nijah
- 13
- 2
1
vote
1 answer
How to configure multiple nested subdirectories in Nginx using wildcards?
Sorry if this was asked before. I've searched, but couldn't find anything close to what I'm trying to accomplish and I would appreciate any indication that could get me closer to solving this.
I have the following server setup:
domain.com -…

Catalin Vasile
- 13
- 1
- 3
1
vote
1 answer
Will having 2 web app instances ensure availability incase of WPA problems?
I have an azure web app (S2 app Service plan) that is set to autoscale but has a min instance count of 1. As it mostly idles, the real instance count also is 1 almost all of the time.
Last week "something" happened and the site was no longer…

Thomas Woelfer
- 166
- 1
- 6
1
vote
1 answer
How to setup SSL certs for a LAN web app server
I want to setup a ticketing system in my company for managing/tracking support tickets and a knowledge-base of past issues.
I am having trouble figuring out the best way to encrypt the traffic to this server. It won't be externally accessible and I…

Justin Grimes
- 127
- 1
- 2
- 10
1
vote
2 answers
Ubuntu Server and Tomcat 6 WebApp SecurityUtil Exception
I am running clean install of Ubuntu Server 9.10 with Tomcat 6 installed from the Ubuntu installation. When I upload a WebApp through the Tomcat Manager and it starts automatically on boot with /etc/init.d/tomcat6 start my Lib Jars in my Web Apps…

Bernie Perez
- 137
- 7
1
vote
0 answers
Linode : Installing a working Jetty 9.x on DSL (Damn Small Linux)
I am exploring an option to deploy a java application with jetty on Linode.
While my endeavor to create a production grade system with the minimum resource utilization (so that scarce resources could be saved for actual customer request); I came…

gyan
- 111
- 4
1
vote
1 answer
How to host R-Shiny app with MongoDB on Azure
I want to host an R-shiny app on Windows Server platform on Azure VM and this R-Shiny app will retrieve data from MongoDB.
So far:
I cannot install R-Shiny server because it doesn't support Windows platform
It's an external cloud. So, I cannot run…

bensw
- 111
- 3
1
vote
2 answers
Password Vaults
The company I work for is looking to setup a web based application that will host the passwords. So it should use SSL and be able to have access controls implemented by user. It does not necessarily need to tie into AD. What applications have worked…
None