Latest Server related questions

Score: 1
reload systemd-networkd without a reboot?
sd flag
gcb

Is it possible to reload changes in /etc/systemd/network/* in a live system?

already tried systemctl daemon-reload, systemctl restart systemd-networkd.service, networkctl... nothing seems to avoid a full reboot.

Score: 0
Ivan avatar
Everything points to reverse proxy
cn flag

I have several domains on the same server i.e IP address, but they all show the reverse proxy.

When I type in example1.com and example2.com, they both go to the reverse proxy for someapp.com

Here's the nginx.conf file

  # someapp.com
  server {
    listen 80;
    server_name someapp.com;
    return 301 https://someapp.com$request_uri;
  }

  server {
    listen 443 ssl;

    server_name someapp.com;

  ...
Score: 0
SmashingQuasar avatar
Redirect 127.0.0.1:80, 127.0.0.1:443 and 127.0.0.1:8080 to an Hyper-V virtual machine
ph flag

Alright so the title may be a little misleading but that's the best I could find.

Here is what I am trying to accomplish:

I am on Windows 11 Pro. I have a virtual machine running Debian 11 on Hyper-V. This machine is running a Docker environment using Traefik as a reverse proxy.

I am developer working on various web projects. I have been trying for some time to set up Traefik as a reverse proxy so I ca ...

Score: 1
OpenLitespeed vs. Apache difference for WordPress?
pe flag

What is the biggest difference and concerns about OpenLitespeed (not premium Litespeed) and Apache?

About speed, security and management issues, what should newbies understand? This is not about web hosting service, I mean to install by myself? thank you

Score: 0
systemd, journal receiving raw log
sd flag
gcb

one common paradigm on all other syslog implementations (rsyslog, syslog-ng, readlog, etc) is to exchange log entries via UDP514 in plain text format.

How do I enable systemd-journal-remote to receive logs in such format?

(I know there are plugins to more complex log providers to emulate the new https format used by default by systemd-journal-remote, but i'm dealing with dumb appliances that can onl ...

Score: 0
lesssugar avatar
How do I configure apache, so that my client certificate authentication works for two specific URLs only?
lr flag

I'm following this guide in order to establish client-based, certificate authentication on my website.

The goal: Allow 2 users access to 2 specific URLs: /login and /admin. When any of the 2 users access the mentioned locations, they need to provide a certificate that identifies them (imported via a .pfx file).

I completed seven steps of the guide. The 8th step deals with adjusting the apache config.  ...

Score: 0
Evyatar Saias avatar
iptables rules confusion, nat PREROUTING
ma flag

Im struggling to understand exactly what these set of iptables rules do.

Does port 22 get the packet AND port 2222 gets a copy of it as well? Or does the packet get redirected to port 2222 skipping port 22? Can someone please explain to me what these set of rules do in detail? thanks in advance!

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -P FORWARD ACCEPT
iptables -A INPUT -p tcp --dport 2222  ...
Score: 0
Does Apache's "LogLevel" Affect only Error Pages, or Access Logs too?
lc flag

My Apache access_log is only showing a handful of requests. I want to see all hits to the server in the logs. I'm confused about the "LogLevel" directive. Do the various levels (error, warn etc) apply only to the error logs, or to the raw access logs as well? Should I change "LogLevel" to "info" to see all requests?

Edit: I'm running CentOS.

Score: 0
Manuel avatar
Intune iOS/iPadOS | Configuration profiles how to apply to Ipad
cn flag

Good afternoon,

I'm struggling to find On how I can apply the Configuration profiles to an Ipad.

The Ipad is visible in Intune under devices. But I can not apply the Configuration profile directly to it. So I created a group with (iPad devices) But unfortunately, I can't find the device in there since it searches in the aad and the device (iPad) is not in there

How do you guys add the configuration pro ...

Score: 0
haher avatar
Issue with VirtualHost settings in Apache2.2 leading to 503 varnish cache error
cn flag

<VirtualHost 127.0.0.1:80> ServerName staging02.cherry.com

ServerAlias www.staging02.cherry.com 



DocumentRoot /home/staging02/version/www.staging02.cherry.com
ServerAdmin webmaster@cherry.ca

SetEnv environment prod
SetEnv project staging02

UseCanonicalName Off
#CustomLog /var/log/httpd/staging02.cherry.com_log combined
#CustomLog /var/log/httpd/staging02.cherry.com-bytes_log "%{%s}t %I . ...
Score: 0
Diogo Braga avatar
Apache not sending headers to PHP over FCGI/PHP-FPM
cn flag

I have a virtual host configured to process PHP files over Proxy:FCGI, and it works fine, except that PHP is not receiving custom headers and others, like "Origin".

Here my Apache 2.4 virtual host:

<VirtualHost *:80>
    ServerName domain.localhost
    DocumentRoot "/my/host/directory/public"

    DirectoryIndex index.html index.php

    ErrorLog "/my/host/directory/logs/error.log"
    CustomLog ...
Score: 1
IT_User avatar
After installing any OS (bios is set to UEFI), the boot order constantly changes (windows and linux installs). How can I disable this "feature"
mx flag

Have numerous different servers (primarily Dell) that we are installing through pxeboot. After the OS is installed the first time, the UEFI boot sequence is automatically changed to allow the OS to load as the first boot option.

This works fine for regular people that want to build a single host one time, but in lab environments where things are continually rebuilt, this causes a large sore. Is t ...

Score: 0
Section Of Website On Another Server
mx flag

I have a vendor developing a new section of my company's website and the vendor will host and maintain this section of the website which is a different server than my main website. The vendor suggested a subdomain for this new section of the website. However, I feel strongly about not using a subdomain and keeping it as part of the main domain.

The main website is a windows and the vendors serv ...

Score: 1
Debian 11 doesn't seem to have any netfilters installed
in flag

When I tried to so

sudo sysctl net.netfilter.nf_conntrack_tcp_be_liberal=1

I got the error:

sysctl: cannot stat /proc/sys/net/netfilter/nf_conntrack_tcp_be_liberal: No such file or directory

When I checked the folder ls /proc/sys/net/netfilter/ All I could see was:

nf_log  nf_log_all_netns

But on Debian 10, I see this: ls /proc/sys/net/netfilter/

nf_conntrack_acct                   nf_conntrack_dccp_t ...
Score: 0
AtomX avatar
How to solve non-www redirection to www Nginx?
fr flag

This is my NGinx Web Server configuration

    server {
        if ($host ~ ^[^.]+\.betafox\.net$) {
            return 301 https://$host$request_uri;
        } # managed by Certbot
    
    
        if ($host = www.betafox.net) {
            return 301 https://$host$request_uri;
        } # managed by Certbot
    
    
        if ($host = betafox.net) {
            return 301 https://$host$request_ ...

The Stunning Power of Questions

Much of an executive’s workday is spent asking others for information—requesting status updates from a team leader, for example, or questioning a counterpart in a tense negotiation. Yet unlike professionals such as litigators, journalists, and doctors, who are taught how to ask questions as an essential part of their training, few executives think of questioning as a skill that can be honed—or consider how their own answers to questions could make conversations more productive.

That’s a missed opportunity. Questioning is a uniquely powerful tool for unlocking value in organizations: It spurs learning and the exchange of ideas, it fuels innovation and performance improvement, it builds rapport and trust among team members. And it can mitigate business risk by uncovering unforeseen pitfalls and hazards.

For some people, questioning comes easily. Their natural inquisitiveness, emotional intelligence, and ability to read people put the ideal question on the tip of their tongue. But most of us don’t ask enough questions, nor do we pose our inquiries in an optimal way.

The good news is that by asking questions, we naturally improve our emotional intelligence, which in turn makes us better questioners—a virtuous cycle. In this article, we draw on insights from behavioral science research to explore how the way we frame questions and choose to answer our counterparts can influence the outcome of conversations. We offer guidance for choosing the best type, tone, sequence, and framing of questions and for deciding what and how much information to share to reap the most benefit from our interactions, not just for ourselves but for our organizations.