8,145 questions
-1
votes
0
answers
23
views
Set up server launch configurations in vscode
I am trying to move from eclipse to vscode.
I want to set up various Tomcat server configurations so that I can run my web app in different environments.
I have installed Tomcat to c:\servers\tomcat. ...
1
vote
1
answer
129
views
HTTP request encoding
Let's say we have an HTML form for sending data to the php/webserver server
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
</head>
<body>
<form ...
1
vote
1
answer
90
views
Angular SSR just small parts
I have an existing public Angular 20 website with no logins or authentication, and a few pages.
The client has recently asked to introduce Search Engine Optimization features. They mostly want each ...
0
votes
0
answers
28
views
Request Filtering in Microsoft IIS Server with PHP prevents loading Default Document via Domain name [duplicate]
Task
I have to switch on Request Filtering in the IIS Server with PHP to reduce the number of possible file extensions.
Problem
Although the Request Filtering works with direct deep links (i.e. https:/...
0
votes
0
answers
86
views
Allow response 404 and serving compressed files without triggering the captive portal
ESP32, Arduino Framework, using these libraries:
lib_deps=
ESP32Async/AsyncTCP
ESP32Async/ESPAsyncWebServer
https://github.com/guestisp/ESP32AsyncDNSServer.git
here the relevant code:
#...
0
votes
0
answers
25
views
Python Web Server Using 2 Cores not Interacting
I am trying to create an app on a Pico W where core 1 of the Pico runs a loop that controls an ultrasonic sensor. The other core 0 runs code for a web server. I want to be able to control the on / off ...
0
votes
1
answer
83
views
Safari won't connect to my bare bones webserver
I am testing a minimal web server in SBCL using usocket:
(defun create-server (port)
(let* ((socket (usocket:socket-listen *hostname* port))
(connection (usocket:socket-accept socket :element-...
0
votes
0
answers
27
views
Calling socket(), bind() and listen() doesn't work on assembly [duplicate]
I'm trying to make a webserver using assembly x86_64 and for some reason the server wont bind even through am passing the right arguments
section .text
extern socket, bind, listen, accept, perror
...
1
vote
1
answer
194
views
How can I use offline maps in an ionic app
I have an ionic angular app that uses online maps (OSM and Spanish IGN maps). It runs on Android (at the moment there is not an ios versión). Now, I need to develop the possibility of using offline ...
0
votes
2
answers
73
views
404 when try to post some text into my webserver with python and flask
I am still very new to Python, just know some basic stuff bout it. I have built a small web application that takes input from a web server and sends it to the backend, which stores everything in a ...
0
votes
0
answers
234
views
Setup self-managed Firefly III server in subdirectory
I am trying to install a Firefly III instance on a machine which already has web services running. Therefore I want to serve it in the subdirectory firefly. Unfortunately I don't get it running after ...
1
vote
0
answers
42
views
How to use strapi's log in puppeteer?
I want to use strapi's log in puppeteer.
The strapi configuration is complete, and it is used well in the strapi internal code.
But even though I passed the log function to puppeteer, it does not work....
-1
votes
1
answer
88
views
Running Quarkus Native Image API with IIS as a Reverse Proxy alongside ASP.NET Core
Our internal web server is running IIS, with the main site powered by aspNetCore and launched as MainWeb.exe.
We would like to deploy a new REST API built with Quarkus as a native image (quarkus-rest-...
1
vote
1
answer
220
views
fail2ban regex to block User Agent
I can’t manage to set up the regex for Fail2Ban to block something like this:
"54.88.84.219 - - [21/Dec/2024:13:41:37 +0000] "GET /events/category/stand-up/day/4586-04-01/ HTTP/1.1" 200 ...
0
votes
0
answers
16
views
Android Studio App crashes sometimes when trying to get data from local webserver [duplicate]
I am currently trying to build my first app with android studio.
I am trying to access data from a webserver
My code is:
class MainActivity : AppCompatActivity() {
override fun onCreate(...
0
votes
0
answers
37
views
Python CGI script only working on certain webservers
I've been tasked with creating a website using both HTML and Python CGI. I've ran into many issues however managed to solve them all and got the HTML and CGI to work on the inbuilt python webserver ...
0
votes
2
answers
230
views
Error Nginx: stat() failed (13: permission denied)
This is my first setup web server & dns server, I'm using:
nginx
php7.4 (shivammathur/php/[email protected])
And I've problem while setup my local app to run multiple app:
yii 1 (/Users/ademugnirusmana/...
0
votes
1
answer
69
views
IIS fail to serve custom error pages when .NET app fails on SQL connection
I would appreciate any help in this case.
I have a .NET Framework 4.5.1 web app running on IIS. I have two physical files in the root of this app:
Error404.html
Error500.html
In the web.config under &...
0
votes
0
answers
40
views
Does it affect performance to have nginx configs of sites which are currently not visited?
I'm using ngnix for my local setup, I have multiple websites/projects that I work on and I have it configured under sites-enabled. When I'm working on a single website/project I don't need other ...
0
votes
0
answers
719
views
What are the downsides for using Werkzeug with Flask for production with the flag `allow_unsafe_werkzeug=True`
I have written a script in Python using Flask for displaying my Raspberry Pi camera feed on a webpage and when I try and serve it for use on the Pi I get a crash with the error RuntimeError: The ...
1
vote
1
answer
207
views
File download from Javascript not working but OK from direct HTML link
I am trying to download a file from an ESP32 which is running the PsychicHTTP webserver. For testing, this is just a fixed .CSV file. In HTML:
<div>
<button type="button" onclick=&...
0
votes
1
answer
80
views
How to view Parallels VM Django webserver from Mac Sequoia host browser?
I've been running a Django webserver in an Ubuntu 22.04 VM using Parallels (Standard Edition Version 20.0.1) on my M2 Mac.
python manage.py runserver 0.0.0.0:8000
I then view the website in Chrome/...
0
votes
0
answers
68
views
Web Server returning wait page instead of the intended response for HttpClient request in VB.NET
So I have my webpage at: http://daera.net/dmoon/issuecmds.php
Since this is my own site, I can modify it in whatever manner I want. Right now it is meant to send a simple, static response with this ...
0
votes
1
answer
197
views
Confusion regarding apache default virtual host and wildcard port
I rewritten my whole question ...
So I want to use apache's _default_ in order to match any requests that are not clearly defined as hosts / ServerName on my server.
e.g when accessing server IP http:/...
1
vote
1
answer
89
views
Not getting 502 error page on web server failure [closed]
I am running a web server using golang net/http (no tomcat / nginx used here) on an ec2 in a target group assigned to a ALB with SSL.
I want to use a cloudfront distribution, which is already set up ...