62 lines
1.9 KiB
Plaintext
62 lines
1.9 KiB
Plaintext
server {
|
|
root /var/www/magnetico-web/current/public;
|
|
|
|
# Add index.php to the list if you are using PHP
|
|
index index.php;
|
|
server_name magnetico.pw;
|
|
|
|
location / {
|
|
# try to serve file directly, fallback to index.php
|
|
try_files $uri /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ ^/index\.php(/|$) {
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
|
include fastcgi_params;
|
|
fastcgi_intercept_errors on;
|
|
|
|
# When you are using symlinks to link the document root to the
|
|
# current version of your application, you should pass the real
|
|
# application path instead of the path to the symlink to PHP
|
|
# FPM.
|
|
# Otherwise, PHP's OPcache may not properly detect changes to
|
|
# your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
|
|
# for more information).
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
# Prevents URIs that include the front controller. This will 404:
|
|
# http://domain.tld/index.php/some-path
|
|
# Remove the internal directive to allow URIs like this
|
|
internal;
|
|
}
|
|
|
|
# return 404 for all other php files not matching the front controller
|
|
# this prevents access to other php files you don't want to be accessible.
|
|
location ~ \.php$ {
|
|
return 404;
|
|
}
|
|
|
|
listen [::]:443 ssl http2 ipv6only=on;
|
|
listen 443 ssl http2;
|
|
|
|
include /etc/nginx/ssl/magnetico.pw.conf;
|
|
include /etc/nginx/config/ssl.conf;
|
|
|
|
error_log /var/log/nginx/magnetico-web_error.log;
|
|
access_log /var/log/nginx/magnetico-web_access.log;
|
|
}
|
|
|
|
server {
|
|
if ($host = magnetico.pw) {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
server_name magnetico.pw;
|
|
|
|
listen 80 ;
|
|
listen [::]:80 ;
|
|
|
|
return 404;
|
|
}
|