- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了很多在线教程,需要帮助来解决这个问题。
nginx 已安装,但 http://localhost/返回一个要保存的bin文件
这是站点可用/默认文件。
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /usr/share/nginx/html;
# Add index.php to the list if you are using PHP
index info.php index.html index.htm index.nginx-debian.html;
server_name localhost;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
# fastcgi_pass unix:/var/run/php5-fpm.sock;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}
我用了这个link创建符号链接(symbolic link)
usr/share/phpmyadmin
在
usr/share/nginx/html
最后我重新安装了所有东西。所以,我又回到了起点。
最佳答案
一切都解决了我跟着那个guide .我犯了一个不改变的简单错误
location = /50x.html { root /usr/share/nginx/www; }
到
location = /50x.html { root /usr/share/nginx/html; }
因为我的系统是 14.04。
我确实改变了起跑线。
关于php - 使用 phpmyadmin 安装 LEMP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30465326/
我有一个位于 Digital Ocean 上的站点,该站点设置在 LEMP 堆栈上。现在有些图片没有显示在网站上。当我在开发中运行它时,它可以工作。虽然,当它现在投入生产时,图像并没有显示出来。我已阅
嘿,大家好,我正在尝试将 wordpress 安装到我网站的子目录中。我已经安装过多次 WordPress,并且已经完成了安装 mysql、创建数据库、更改 wp-config 文件和安装 php 的
正在尝试设置 Magento2在我的 LEMP 堆栈上。遵循说明 here和 here (在 compiling from sources 之后多次这样做,因为很难满足 Magento2 的 Comp
我在同一台服务器上安装了两个 WordPress 站点(Ubuntu + Nginx +Mariadb + php-fpm)。 /var/www/html /var/www/html2 现在的问题是安
我尝试了很多在线教程,需要帮助来解决这个问题。 nginx 已安装,但 http://localhost/返回一个要保存的bin文件 这是站点可用/默认文件。 ## # You should look
我使用的是 RedHat Linux Web 和数据库服务器。在带有 PHP 5.3.3 和 Nginx 1.4.4 的 Web 服务器上安装 PHPMyadmin 4.0.10.2-2。连接到数据库
我最近购买了 DigitalOcean 帐户,并正在尝试设置我的网站。但是,每当我输入站点的 IP 地址时,我都会看到以下页面: 欢迎使用 nginx! 如果您看到此页面,则表示 nginx Web
我在设置基本 LEMP 服务器时遇到问题。在尝试通过简单的方式更新条目时,如果我尝试使用 PHPmyadmin 读取数据库,PHP 会停止响应,但仅限于特定客户端(我的意思是没有一个 PHP 页面正在
我已按照此处指示的确切过程进行操作:https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-
在大约 6 天多的时间和无数轮启动/销毁之后,我终于启动并运行了我的 Digital Ocean Droplet 服务器(即我可以在我的 IP 上查看实时内容页面)。 此时我正在尝试安装 Git,并且
刚刚来到 Arch 方面。我在让我的本地 LEMP 堆栈在 Antergos 上工作时遇到了很多麻烦。当前服务器 block 本地页面返回 403 错误。 /etc/nginx/nginx.conf:
运行时laravel new我收到所有这些错误。我理解他们的意思,但我很好奇为什么会发生这种情况,在 Windows 上一切都很好。 我安装了php,为什么Ubuntu会抛出错误?它是否从 php 安
我的网站使用 lemp 在线,我已经编写了要执行的命令,但我不知道如何在 Ubuntu Lemp 上设置它。 通常使用 Cpanel 进行共享主机很容易。请问我如何安排每天晚上 8 点之前的 cron
我正在安装并运行 CentOS 5.5(最终版)32 位和 Nginx、MySql、php-fpm,但是当我尝试从我配置的域打开页面时,没有任何显示,浏览器继续加载。我也尝试使用服务器 IP,但仍然相
刚刚创建了一个 Laravel 7 应用程序并将其转移到我的新 digital ocean 水滴中。我已经安装了 LEMP 以及它工作所需的一切。 但是,当我转到服务器 IP 并访问主页“/”时,没有
我通过以下方式在MacOS下创建了一个docker-machine: docker-machine create -d virtualbox temp.sysadmin.local docker-ma
我正在开发一个网络云应用程序,并使用 nginx、Laravel、MySQL 和 PHP 设置带有微型实例(Ubuntu 14.4)的 Google 计算引擎。 现在我想用这个设置来设置我的 PhpS
我对 Vagrant 很陌生,但我正在尝试基于 this 进行 Vagrant 设置使用 Puppet,但基于 Linux 14.04 而不是 12.04。但是,将 VM 更改为“ubuntu/tru
希望大家一切都好 我已经在 Ubuntu 18.04 WSL 上设置了 LEMP 环境。我正在将 PHP7.1-FPM、Composer 和 NPM 用于从网络服务器运行的应用程序。 我已经设置了虚拟
我刚刚使用 Digital Ocean(LEMP 堆栈)将我的 laravel 应用程序上传到网络,但是当我尝试运行 python 进程时,我的权限被拒绝。这在本地有效,没有权限问题。 我已尝试授予对
我是一名优秀的程序员,十分优秀!