я использую Linux Mint 17.1 (Rebecca)
, с Nginx
, а также Phalcon PHP
и я пытаюсь получить rewrite rules
работать с этим. Содержимое конфигурационных файлов php, которое находится в /etc/nginx/sites-enabled/default
:
##
# 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;
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html index.php;
server_name _;
location ~ $root/phalcon_tutorial {
rewrite ^/$ /public/ break;
rewrite ^(.*)$ /public/$1\.php break;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?_url=/$1 break;
}
}
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
#Credit to: www.slideshare.net/giorrgio/from-lamp-to-lnnp:
#prevent cgi.fix_pathinfo=1 security hole
if (!-f $request_filename) {
return 404;
}
#EndCredit
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;
# }
#}
а также /etc/nginx/sites-available/default
##
# 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;
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html index.php;
server_name _;
location ~ $root/phalcon_tutorial {
rewrite ^/$ /public/ break;
rewrite ^(.*)$ /public/$1\.php break;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?_url=/$1 break;
}
}
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
#Credit to: www.slideshare.net/giorrgio/from-lamp-to-lnnp:
#prevent cgi.fix_pathinfo=1 security hole
if (!-f $request_filename) {
return 404;
}
#EndCredit
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;
# }
#}
Мой корень nginx находится в каталоге: /var/www/html
под этим я пытаюсь сделать phalcon php
учебник с этого сайта: http://docs.phalconphp.com/en/latest/reference/tutorial.html#checking-your-installation
они используют папку tutorial
для корневой папки этого урока, но я использую имя папки phalcon_tutorial
вместо:
когда я набираю localhost/phalcon_tutorial
, следует переписать этот URL localhost/phalcon_tutorial/public/index.php
но я получаю 403 Forbidden
ошибка на localhost/phalcon_tutorial
вместо.
Мой каталог под /var/www/html/phalcon_tutorial/
выглядит так:
phalcon_tutorial/
|
|_app/
| |
| |_controllers/
| | |
| | |_IndexController.php
| |
| |_models/
| |
| |_views/
|
|_public/
|
|_css/
|
|_img/
|
|_index.php
|
|_js/
index.php
файл выглядит так:
<?php
try {
//Register an autoloader
$loader = new \Phalcon\Loader();
$loader->registerDirs(array(
'../app/controllers/',
'../app/models/'
))->register();
//Create a DI
$di = new Phalcon\DI\FactoryDefault();
//Setup the view component
$di->set('view', function(){
$view = new \Phalcon\Mvc\View();
$view->setViewsDir('../app/views/');
return $view;
});
//Setup a base URI so that all generated URIs include the "tutorial" folder
$di->set('url', function(){
$url = new \Phalcon\Mvc\Url();
$url->setBaseUri('/phalcon_tutorial/');
return $url;
});
//Handle the request
$application = new \Phalcon\Mvc\Application($di);
echo $application->handle()->getContent();
} catch(\Phalcon\Exception $e) {
echo "PhalconException: ", $e->getMessage();
}
и мой IndexController.php
файл выглядит так:
<?php
class IndexController extends \Phalcon\Mvc\Controller
{
public function indexAction()
{
echo "<h1>Hello!</h1>";
}
}
Я не могу найти решение. Я думал, что это может быть проблема с разрешением. Я изменил все папки и файлы, начиная с phalcon_tutorial
от владения root
быть в собственности www-data
при выполнении sudo chmod -R www-data phalcon_tutorial
от /var/www/html
и я поменял все разрешения папок с phalcon_tutorial
до 755
, и я искал в Интернете, и я подумал, что, возможно, мне пришлось отключить follow_symlinks
так я и пошел и отредактировал /etc/nginx/nginx.conf
и добавил disable_symlinks off
под http block
— этот файл теперь выглядит так:
user www-data;
worker_processes 4;
pid /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;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# 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/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
disable_symlinks off;
}#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;
# }
#}
После всего этого я перезапустил свой nginx server
используя команду sudo /etc/init.d/nginx restart
— но, как я уже сказал — когда я иду в localhost/phalcon_tutorial
это показывает 403 Forbidden
ошибка, но если я пойду к localhost/phalcon_tutorial/public/
или же localhost/phalcon_tutorial/public/index.php
это показывает «Привет!»
Как мне правильно переписать этот URL, используя в nginx
— не получая 403 error
? Я не очень опытный с url rewriting
или файлы конфигурации сервера в целом, и я трачу много времени на поиск в Интернете, пытаясь выяснить это, и я в растерянности.
/etc/nginx/sites-enabled/
должны быть символические ссылки на файлы в /etc/nginx/sites-available/
,В основном все ваши настройки виртуального хоста будут определены в
/etc/nginx/sites-available directory
Чтобы включить конфигурацию, вы должны создать символическую ссылку (или ярлык файла) в/etc/nginx/sites-enabled
каталог, равно как и отключить конфиг, вы бы удалили символическую ссылку. Nginx сделает все остальное и найдет/etc/nginx/sites-enabled
каталог для активных конфигураций виртуального хоста.
(директива include /etc/nginx/conf.d/*.conf;
)
Вы пробовали понять проблему с файлами журналов? Я думаю, что файлы журнала должны содержать информацию о неправильном запросе и файле назначения.
Я вижу, что ваш конфиг пытается включить /etc/nginx/sites-enabled/*.conf
файл, но вы настроили свой сайт на /etc/nginx/sites-enabled/default
(имя файла не соответствует заданной маске файла * .conf)
Других решений пока нет …