我已经添加了一个域。 我想用certbot为新域启用https。 遵循此https://certbot.eff.org/lets-encrypt/ubuntubionic-apache sudo certbot --apache
[sudo] password for qq:
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator apache, Installer apache
Which names would you like to activate HTTPS
我有一个cakephp web app,我已经上传并链接到ubuntu Amazon EC2实例上的apache服务器上,域名为ec2xxxx.compute.aws.com。蛋糕应用程序位于/var/www/Cakefolder/中的apache的根目录中,打开上面的链接就可以直接打开。我买了一个域名www.mywebsite.com,我现在希望链接生产的蛋糕应用程序的阿尔法版本与我的域名下子域名链接,如alpha.mywebsite.com,并在www.mywebsite.com上只有一个横幅。我在etc/apache2/sites-available/中创建的名为mywebsite.co
我有一台专用服务器。我通过运行以下命令重新安装了apache:
sudo apt-get purge apache2
sudo apt-get install apache2
现在,当我访问域名时,它说:
Not Found
The requeted URL / was not found on this server.
此外,它是并行的plesk控制面板,现在它是并行的电源面板。所有这一切是因为我运行的命令或者是其他人更改了它吗?
我的服务器上有ubuntu系统。我有php,composer,还有laravel项目,它运行得很好。但我有一个问题。所有东西都在我的服务器ip上工作,但我也有域名。所以我希望所有这些都在域名上。当我进入域时,它会弹出:
This site can’t be reached
ERR_NAME_NOT_RESOLVED
然后,我清除浏览器dns缓存,但不工作。在我看来,它需要apache虚拟主机或类似的东西。因此,我在(/etc/apache2/ my_domain.conf )中创建了这个文件中的代码:
ServerAdmin admin@example.com
ServerName
当我尝试安装后重新启动时,Apache无法完全确定域名。
我得到了这个错误;
$ sudo /etc/init.d/apache2 restart
Restarting web server config apache2
apache2: Could not reliably determine the server's fully qualified domain
name, using 127.0.1.1 for ServerName.
为什么我看到127.0.1.1?我尝试将ServerName localhost保存到我的/etc/init.d/apache2中,但每次输入ph
我计划使用我的api服务器没有域名。我只是计划使用http://ip_address/user/ , http://ip_address/user/update/1232
我需要DNS吗?我需要apache中的任何特殊配置文件吗?此外,我如何测试这个ip_address的apache?
ab -n 1000 -c 10 http://ip_address is not working