使用此标记(以及适当的编程语言标记)来编写与Apache HTTP Server相关的问题。不要将此标记用于其他Apache Foundation产品的问题。请注意,服务器配置问题通常更适合https://serverfault.com
我意外地遇到了同样的关闭错误。我尝试了一切。 我卸载了Skype。 我尝试将端口更改为 81,444 / 81,443 / 88/443 / 80,443(默认)。 我去服务并尝试杀人
Apache mod_evasive 不尊重 Drupal 中特定页面的虚拟主机中的配置
我通过在虚拟主机文件中添加配置,在 Apache 中为我的 Drupal 9 网站设置了 mod_evasive,如下所示 DOS 站点数 50 DOSS站点间隔 1
我有 plesk 8.3.0,以及 phpmyadmin 2.8.2.4 我试图查找 phpmyadmin 所在的位置。我在 srv/ 中找不到它,我在服务器中执行了一个 find 命令,但不太确定它在哪里...
使用 SSL(和 docker)的 Apache 反向代理上的 Mosquitto
我想要做的是将 eclipse-mosquitto 作为 MQTT 代理运行在带有 SSL 的 Apache 反向代理后面。 我编写了以下 docker-compose 文件: 版本:“3.9” 服务: 清真寺...
MVC 路由在索引 (index.php/path) 中提供服务,而不是在正常情况下 (site/path)
我上传了一个MVC应用程序(模型视图控制器)到vps,详细信息是路由,默认情况下index.php位于“public”文件夹中,路径“/”(如果显示良好),但是.. .
无法在 Apache 2.4.58 CENTOS 7 上运行 PHP 8.3
我目前正在升级我的服务器,从 PHP 7.3 迁移到 PHP 8.3,从 Apache 2.4.6 迁移到 Apache 2.4.58。该网站使用 PHP 7.3 正常加载。但是,当我尝试使用 PHP 8.3 和
apache如何解决CPU负载过高的问题? (ubuntu+ec2)
我在 Amazon EC2 中设置了一个实例,这是一个运行 apache2、php5 和 mysql 的 ubuntu 10.04 服务器。 当使用系统的用户少于 10 名时,服务器会获得 20%、30%、40% 的 CPU 负载。 使用我在
我购买了一个域名,例如www.mydomain.com。我还有 Amazon EC2 实例。我将包含网站文件的文件夹上传到 /var/www/html/mywebsite。 我想做的是链接一个公共DNS...
我将 localhost:8080 转发到 mysite1.myhost1.com 并将 localhost:9000 转发到 mysite2.myhost2.com 我可以通过 localhost:8080 和 localhost:9000 分别访问网站。 我想要的是我
我的输入栏之间有空格,它只是将它们全部加在一起,这是我不想要的
燃油温度探针帽: ... <div class="row" style="margin-bottom: 0.1cm"> <div class="col-xs-4"> Fuel temp probe cap: </div> <div class="col-xs-2"> <input type="text" id="temp_prob" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> Canister: </div> <div class="col-xs-2"> <input type="text" id="purge_vol" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> Fuel Tank: </div> <div class="col-xs-2"> <input type="text" id="battery_volt" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> Manufacture: </div> <div class="col-xs-2"> <input type="text" id="battery_cap" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> Manufacture: </div> <div class="col-xs-2"> <input type="text" id="rec_energy" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> Part Number: </div> <div class="col-xs-2"> <input type="text" id="soc_min" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> Material: </div> <div class="col-xs-2"> <input type="text" id="num_of_cycles" style="height: 20px; width: 100px; margin-left: -25px"> </div> <div class="col-xs-4"> SOC min: </div> <div class="col-xs-2"> <input type="text" id="cop_file" style="height: 20px; width: 100px; margin-left: -25px" disabled="disabled"> </div> </div> </div> Obv 我已经搜索了堆栈溢出,我尝试了边距底部和之前给出的其他提示。我想无论以前的实习生是谁,都写得正确。 每次我尝试其中一种方法时,最终都会发生参数混乱的情况。见下图。 我猜列内容会溢出/换行到下一行,在输入行之间插入空格,解决方案是增加标签列的大小,下面的工作示例! import { Component } from '@angular/core'; import { bootstrapApplication } from '@angular/platform-browser'; import 'zone.js'; @Component({ selector: 'app-root', standalone: true, template: ` <div class="row" > <div class="col-3"> Fuel temp probe cap: </div> <div class="col-3"> <input type="text" id="temp_prob" /> </div> <div class="col-3"> Canister: </div> <div class="col-3"> <input type="text" id="purge_vol" /> </div> <div class="col-3"> Fuel Tank: </div> <div class="col-3"> <input type="text" id="battery_volt" /> </div> <div class="col-3"> Manufacture: </div> <div class="col-3"> <input type="text" id="battery_cap" /> </div> <div class="col-3"> Manufacture: </div> <div class="col-3"> <input type="text" id="rec_energy" /> </div> <div class="col-3"> Part Number: </div> <div class="col-3"> <input type="text" id="soc_min" /> </div> <div class="col-3"> Material: </div> <div class="col-3"> <input type="text" id="num_of_cycles" /> </div> <div class="col-3"> SOC min: </div> <div class="col-3"> <input type="text" id="cop_file" /> </div> </div> `, }) export class App { name = 'Angular'; } bootstrapApplication(App); 堆栈闪电战
将自定义 WordPress 页面转换为核心 PHP - 区分大小写的 URL 问题
我们目前正在将网站的自定义 WordPress 页面迁移到核心 PHP。但是,我们遇到了与 URL 大小写敏感相关的问题,我们正在努力解决......
我一直在尝试构建一个多站点 Apache docker,但一切都是徒劳。 这是我的 docker-compose.yml 版本:'3.9' 服务: 应用程序: 容器名称:核心 建造: 上下文:./con...
我使用带有三个容器的 docker - 后端/前端/管理。我想使用这样的代理通行证导航到管理页面或前端 - 服务器名称 cookie.c...
mod_brotli 和 apache 2.4.33 的编译问题
包含对 Apache 2.4.33 的 mod_brotli 支持时出现以下问题。 我编译了 brotli,它编译得很好,但是当我使用 --enable-brotli 和 --with-... 在 apache 配置脚本中启用它时
我在我的应用程序中多次收到错误 503 服务暂时不可用 我想检测为什么会发生这个错误,如何检测?如果有日志文件或类似的东西,因为我没有
在 php.ini 之外配置的 PHP 上传大小是否有限制?
我在 /etc/php5/apache2/php.ini 中有以下值,并且我已经重新启动了服务器。 post_max_size = 100M upload_max_filesize = 100M 然而,当我尝试上传小于 100 MB 的文件时,...
如何在我的 php include 上使用块 PATH_INFO URL
我的服务器在我的 php 文件上生成重复的内容。 例如,它会生成如下所示的虚假页面: https://westsidelosangeles.com/surfing-zuma-beach-malibu.php/best-parks-los-angeles.php T...
我配置了 django 日志记录并使用 DEBUG = False 运行 ./manage.py runserver ,一切正常。但是一旦我通过 URL 访问我的服务器,Apache 就会引发 500 错误,这是......
在 windows-10 上的 xampp apache 服务器 v-3.2.1 上创建多个虚拟主机
我尝试在 Windows 10、64 位、XAMPP 3.2.1 上创建多个虚拟主机 我做了以下事情: 1- C:\Windows\System32\drivers tc\hosts 我已在主机底部添加了这些行...
请给我服务器日志,例如apache access_log,以便分析响应时间。 我正在学习创建配置文件测试,所以我需要包含 url、时间和响应时间的日志。 我发现没有重新...