Questions tagged [webserver]

A software application that services requests from clients using the Hypertext Transfer Protocol.

8218 questions
2
votes
0 answers

How to set security header in response from azure Linux web hosting

I have hosted my Web Application on Azure in Linux environment. My web app is in react and services are created using azure function. Application written in .net framework to use krestel server. When I have checked the Web Application URL by…
2
votes
1 answer

Reading GET request value from URL to Arduino WebServer

I hope I can explain what I'm asking for in a good way. I want to have an Android app to send a GET value to the Arduino via the Ethernet Shield. The URL that that would be called from the Android app would like http://192.168.1.199?comm=100 where…
Rogier
  • 25
  • 1
  • 3
2
votes
2 answers

Multiple Actors that writes to the same file + rotate

I have written a very simple webserver in Scala (based on Actors). The purpose of it so to log events from our frontend server (such as if a user clicks a button or a page is loaded). The file will need to be rotated every 64-100mb or so and it will…
Tobias
  • 1,062
  • 1
  • 9
  • 15
2
votes
1 answer

How do i make my IP public, Externally can access my localhost

I just want to make my IP public, so that it can be accessed from any where.I am using ubuntu 18.04. Already installed apache2 and PHP. The index file located in /var/www/html/example.com/public_html/index.php. In local host it is running and with…
Adarsh Sharma
  • 41
  • 1
  • 1
  • 3
2
votes
0 answers

what is the significance of having application server?

In multi-tier infrastructure design, mostly all new web servers are capable enough to process the requests with high computation power. Why do we application servers as a separate tier even if web servers are capable to perform all the…
2
votes
2 answers

http request message boundaries

I'm writing a client to upload files via regular http multipart/form-data to megaupload. Now, the point is not megaupload per se, but the behaviour of their webserver. Curl could upload without any problem, while my client couldn't, even by sending…
oscar
  • 91
  • 1
  • 5
2
votes
0 answers

Unable to launch the IIS Express Web Server in visual studio 2017. Output says IIS Express is running but not

In visual studio 2017, suddenly I started facing below issue, don't know the reason.
Jitendra Pancholi
  • 7,897
  • 12
  • 51
  • 84
2
votes
2 answers

Display text file using node js from a remote server

Good day! I'm having a hard time fixing this issue. I'm currently using node js webserver (http). I'm a beginner in using node js so any help would be appreciated. What I'm hoping to achieve is to display a string 'Hello World!' in the browser while…
acknolodgia
  • 217
  • 1
  • 4
  • 16
2
votes
1 answer

Apache runs wsgi module (django application) twice in case of public router ip and internal server ip?

We've below netwrok setup Internal server ip : 192.168.153.20:443 Public router ip : 111.93.87.11:26060 We've port forwarding in router : 111.93.87.11:26060 to 192.168.153.20:443 So when we first access 192.168.153.20:443(Internal server ip) it…
Bhavik
  • 59
  • 5
2
votes
2 answers

How to activate an Anaconda environment from an Apache web server?

I have a wordpress website running with Apache. From that website, I need to run a python code, but the libraries I need are configured inside an Anaconda environment. To activate the anaconda environment, I need to run: source activate…
P Handler
  • 39
  • 3
2
votes
2 answers

PHP cannot connect to mysql through python

Im writing a PHP to exec a python script which connects to mysql like this &1'); ") ?> in Python script: # -*- coding: utf-8 -*- import mysql.connector and get this error Traceback (most…
cao su gai
  • 21
  • 3
2
votes
0 answers

java.io.FileNotFoundException: LICENSE (Is a directory) exception while extracting a war or deploying a war in tomcat

Getting License (is a directory) error while extracting the war or deploying the code on tomcat, while there is no directory or file in my code by the name LICENSE. Using tomcat 9 ! java.io.FileNotFoundException: LICENSE (Is a directory) …
Shubham Jain
  • 1,864
  • 2
  • 14
  • 24
2
votes
3 answers

.NET Webservice processing large file is having its thread aborted

Let give you the details of this rather odd issue. We have a very large text file to process, it is 780MB and is likily to get bigger. The processing of this file lies in a .NET WebService, a request is sent from a Asp.Net Website client and the…
MrJoeBlow
  • 466
  • 1
  • 5
  • 13
2
votes
1 answer

React app production with Apache on Alwaysdata

I have an app ReactJS in production mode on my apache web server, but I load it in user program (Only react), we can see source code. I can use Apache but when I do, it override all other site on the same domain (*.example.com) with that…
Tryliom
  • 895
  • 1
  • 12
  • 37
2
votes
0 answers

How to whitelist URL from NGINX config file?

I would like to be able to whitelist certain IPs in my NGINX config file and deny everything else. This way I can be certain that only the IPs I allow can access my website. I've already done this and it's working. In the…
Asad Shakil
  • 123
  • 2
  • 11