Skip to main content

Questions tagged [http]

All about programs and services that use the Hypertext Transfer Protocol.

Filter by
Sorted by
Tagged with
1 vote
1 answer
230 views

For the transcription of audio recordings, I use the following command: fish -c 'echo $fish_pid > ~/.kill_pid;exec arecord -f cd' | \ curl --url https://api.openai.com/v1/audio/transcriptions \ ...
Min-Soo Pipefeet's user avatar
0 votes
0 answers
208 views

I have a really hard time with my Grafana on a Debian 11 system. The server seems to be running fine in principle, but I cannot reach it. This happened after I did apt-get upgrade and update on the ...
WolfiG's user avatar
  • 113
0 votes
1 answer
303 views

I'm new to writing bash scripts and mostly using chatgpt to get templates right now. I am trying to create a simple netcat based http server which receives and stores .png files. I have a second ...
Brado11's user avatar
0 votes
1 answer
40 views

I'm building a pipeline in Snakemake to analyse some data. One of the data files I'm using is provided as supplemental data as part of this publication. The paper is behind a paywall, but I've ...
Whitehot's user avatar
  • 245
0 votes
0 answers
260 views

I'm running openSUSE (Tumbleweed), which has worked fine for ages. After running sudo zypper DUP a few weeks ago (and since) suddenly there's a network issue with only some URLs. The ones I can't ...
Greg's user avatar
  • 123
1 vote
1 answer
132 views

Apache webserver on Rocky Linux 9, with SSL certs obtained from LetsEncrypt. This is the config of a specific virtual host "myvhost", but the problem arises for all vhosts on my server: /etc/...
dr_'s user avatar
  • 32.4k
0 votes
1 answer
149 views

I have fail2ban setup and it's working great for most scanning. It triggers off any 4xx in the nginx error log. However, note the following bot scan. Somehow THIS bot is triggering my server to return ...
Chris's user avatar
  • 103
0 votes
0 answers
172 views

As a test I wanted to temporarily block access to my website. So, I deleted http/https rules using ufw delete command. ufw is set to default deny incoming. The only remaining rule is the one allowing ...
Faxopita's user avatar
  • 179
0 votes
0 answers
126 views

On one machine, I have a web server running (apache) and responding on ports 80 and 443. On this machine, I have a firewall (shorewall) that blocks everything except what I authorize, and I therefore ...
Chris972's user avatar
0 votes
1 answer
341 views

In this specific case I am using fabio and nginx and apache http proxy that just proxies requests to destinations. Both the "Combined Log Format" and "Common Log Format" do not ...
KamilCuk's user avatar
  • 970
1 vote
1 answer
3k views

I'm interested in learning more about UEFI HTTPBoot and setting it up for my LAN as a netboot option, but the details are notably sparse. The best docs I've found are Suse Docs for configuring an HTTP ...
eriknelson's user avatar
1 vote
2 answers
2k views

I was using GRUB for UEFI PXE boot or UEFI HTTP boot of a Linux Live OS (made by Ubuntu Focal or Bionic or Jammy). I used the same grub.cfg for both methods. It worked well under UEFI PXE boot, but ...
osexp2000's user avatar
  • 632
0 votes
0 answers
426 views

I am trying to parse HTTP packets using netfilter hooks in my kernel module. I came across this code snippet on How to print data from TCP packets which I modified to make it build. However, I am ...
goodman's user avatar
  • 101
3 votes
1 answer
990 views

Question: Since HTTP supports resuming at an offset, are there any tools (or existing options for commands like wget or curl) that will launch multiple threads to fetch the file in parallel with ...
KJ7LNW's user avatar
  • 535
0 votes
0 answers
378 views

I am beginner. I am trying to load HTTP URL using curl in my Ubuntu terminal. The command I am using is curl -L 'http://google.com' But instead of getting source code. I am getting below error curl: ...
hmmbhaskar's user avatar
0 votes
2 answers
223 views

I'm running an Embedded Linux system, whose kernel is 3.18.21, with some applications on top it on MIPS. When I run iptables & ip6tables on the Linux, such as the following: iptables -A INPUT -p ...
li_jessen's user avatar
  • 233
0 votes
1 answer
688 views

I'm developing a web site that is served by the web server NGINX installed on a Linux platform. One of the service provided by the web site is base on a WebSocket backend server. To be more specific ...
User051209's user avatar
1 vote
0 answers
76 views

I am trying to tunnel ssh via HTTP. My apache virtual host config looks as follows: <VirtualHost *:443> ServerName proxy.example.org ProxyRequests On AllowCONNECT 22 <Proxy *&...
Big X's user avatar
  • 11
1 vote
0 answers
2k views

I am struggling with uploading a file to an SFTP from a URL. All steps work independently but when I combine them they seem to be split into two separate tasks, downloading the file and then ...
justClickingButtons's user avatar
1 vote
2 answers
533 views

how can I print output of httpie request then pipe to grep to check if request has succeeded or failed? http --print=hb POST http://localhost:8080 | grep -c "HTTP/1.1 200" && echo &...
sc0rp10n.my7h's user avatar
0 votes
1 answer
45 views

Let me explain what I want to happen. I have an http server program that displays a website every time I connect to my raspberry pi's ip address on port 8080. But this only works on my current network....
Nick M's user avatar
  • 35
1 vote
2 answers
3k views

I have this script to go through a list of URLs and the check return codes using Curl. Links file goes like this: https://link1/... https://link2/... https://link200/... (...) The script: INDEX=0 DIR=...
markfree's user avatar
  • 455
1 vote
0 answers
3k views

I am config the localhost url in the nginx on macOS like this: ➜ nginx git:(master) cat conf.d/reddwarf-admin.conf server { listen 8083; server_name admin.reddwarf.com; ...
Dolphin's user avatar
  • 791
0 votes
0 answers
317 views

On my network, I have many CentOS VMs with various versions dating from very recently to 10-15 years ago. For some of them I don't have credentials but I want to check if I should keep them by the ...
Noam Yizraeli's user avatar
0 votes
1 answer
2k views

I am having roughly the same problem as in this question, where the problem is, there is a certain URL that, when called in the browser, will download a file, but when called from the command line ...
user56834's user avatar
  • 137

1
2 3 4 5
7