1,007 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
59
views
Panther can't connect to a port with fsockopen
I have a need for end to end testing. When I launch a test that implies to open a page, the same problem comes back each time:
fsockopen(): Unable to connect to ... (No connection could
be made ...
0
votes
0
answers
41
views
Apache2 multiple vhost http2 only in one
I'm configuring Apache2 with 2 virtual hosts (VH) (nohttp2.com and http2.com). The idea is that one of the VH works with http2 and the other only with http/1.1.
I have enabled http2 module and I'm ...
0
votes
0
answers
195
views
Keycloak + RabbitMQ: Access to vhost '/' refused for user
I am following the suggested documentation for using Keycloak as authentication means with rabbitmq. However I always get the following access denied error:
(530) "NOT_ALLOWED - access to vhost '/...
0
votes
0
answers
46
views
Making a reverse proxy to a domain hosted in Plesk or cpanel with nginx
As you can see from the title, I want to create a structure like the one in the image, but I could not achieve this by reverse proxying a normal domain. What should I do?
image
idea or solution on how ...
0
votes
1
answer
45
views
PHP permissions to do file_exists & include from different domain directories in same server?
I have 2 domains: domainA.com & domainb.com hosted on same server, same user; with paths: /var/hostdata/username/public_html/domain_a/ & /var/hostdata/username/public_html/domain_b/
Now in ...
2
votes
0
answers
51
views
VHost config for 1 react(Frontend) and 1 laravel(Backend) not working
i am learning to create apps with react in frontend and laravel as an API in the backend.
i am working locally with wampserver, i have mod_rewrite, mod_alias and mod_negociation activated.
For some ...
1
vote
1
answer
355
views
Unable to Configure Virtual Hosts on Bitnami LAMP (AWS Lightsail) – Domains Not Pointing to Specific Directories
I'm running a Bitnami LAMP stack on an AWS Lightsail instance and trying to set up Virtual Hosts so that two domains point to different directories within htdocs. Specifically, I want:
domain1.fr to ...
-1
votes
1
answer
69
views
Apache Bitnami virtual host doesnt route subdomain correctly
I have a lightsailt LAMP instance. It uses bitnami and I changed the /opt/bitnami/apache/conf/httpd-vhosts.conf to add a new subdomain.
<VirtualHost *:80>
ServerName newsubdomain.domain.com
...
1
vote
1
answer
75
views
Nginx redirect location to an external host, while keeping subpath, method and headers
I am trying to do a permanent redirect from a subpath location on a original server (https://my-server1.com/api/old/subpath) to the root of an external host while keeping the subpath (https://my-...
0
votes
1
answer
1k
views
How do I eliminate a nginx too many redirects error?
I am getting a redirect error im not sure how to fix. The error is; ERR_TOO_MANY_REDIRECTS
Heres my host file on nginx. Any advice appreciated. Thanks.
# HTTP
server {
server_name _;
# I added ...
1
vote
0
answers
66
views
PHP Apache problem with redirect URL - htaccess
I have a problem on my Laravel project using Apache. I am trying to access some network shared folders this way:
$directory = "\\fileserver\public\office\technology";
$items = scandir($...
0
votes
2
answers
715
views
Laravel Octane with Swoole HTTPS configuration apache vhost proxy error
I'm trying to setup SSL for my Laravel 11 website in which is running through Laravel Octane. I'm using swoole, have generated a let's encrypt ssl certificate and set swoole.ssl to true in my octane ...
1
vote
1
answer
60
views
Apache Alias and proxy pass in the same domain
I have a issue with vhost configuration in Apache/2.4.58
I have a NodeJs frontend and laravel api backend.
This is my vhost:
<VirtualHost *:443>
ServerName backend.mydomain.com
...
0
votes
0
answers
20
views
Expressjs vhost manager
I need to find a way to manage subdomains using code.
For exemple, I want to have an API on mydomain.com that will manage running vhost. A request to API.mydomain.com/create would create vhost for a ...
0
votes
1
answer
39
views
How to redirect part of url to new domain by nginx
I want to redirect part of old url to new url by nginx.
https://server1.com/app1/app2
to
https://server2.com/app2
https://server1.com/app1/app2/link1
to
https://server2.com/app2/link1
https://server1....