- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已按照此处指示的确切过程进行操作:https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-14-04
我在启动本地主机 nginx 堆栈时遇到了很多问题。我已经搜索了很多很多堆栈,但仍然无法弄清楚。虽然我很接近,目前我的网站只是下载 php 文件而不是运行它们。我正在使用 vagrant 和我自己构建的虚拟框。我一直认为这是一个 php5-fpm 问题,但我不知道了。
我需要帮助。
# You may add here your
# server {
# ...
# }
# statements for each of your virtual hosts to this file
##
# 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.
##
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
listen 80 default_server;
root /var/www;
index index.html index.htm index.php;
# Make site accessible from http://localhost/
server_name sandbox.dev.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
#try_files $uri $uri/ /index.html;
try_files $uri $uri/ =404;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
nginx.conf
vagrant@precise64:/etc/nginx$ cat nginx.conf
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
##
# nginx-naxsi config
##
# Uncomment it if you installed nginx-naxsi
##
#include /etc/nginx/naxsi_core.rules;
##
# nginx-passenger config
##
# Uncomment it if you installed nginx-passenger
##
#passenger_root /usr;
#passenger_ruby /usr/bin/ruby;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}
最佳答案
将以下位置添加到 default/conf 文件中的服务器 block 。之后重启 nginx:
server {
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
有关更多信息,请参阅:Nginx serves .php files as downloads, instead of executing them
关于php - 权威的 LEMP 堆栈官方 - Ubuntu 14.04,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44558104/
我有一个位于 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 进程时,我的权限被拒绝。这在本地有效,没有权限问题。 我已尝试授予对
我是一名优秀的程序员,十分优秀!