This repository has been archived on 2024-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
etckeeper/nginx/global/wordpress.conf
T
2022-07-06 13:20:54 +02:00

50 lines
1.5 KiB
Plaintext

# WordPress single site rules.
# Designed to be included in any server {} block.
# Upstream to abstract backend connection(s) for php
#upstream php {
# server unix:/tmp/php-cgi.socket;
# server 127.0.0.1:9000;
#}
#server {
## Your website name goes here.
server_name solusar.de www.solusar.de;
## Your only path reference.
root /var/www/vhosts/solusar.de/httpsdocs;
## This should be in your http block and if it is, it's not needed here.
index index.php;
#location = /favicon.ico {
# log_not_found off;
# access_log off;
# expires max;
#}
#location = /robots.txt {
# allow all;
# log_not_found off;
# access_log off;
#}
location / {
# This is cool because no php is touched for static content.
# include the "$is_args$args" so non-default permalinks doesn't break when using query string
try_files $uri $uri/ /index.php$is_args$args;
}
#location ~ \.php$ {
# #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# include fastcgi.conf;
# fastcgi_intercept_errors on;
# fastcgi_pass php;
# fastcgi_buffers 16 16k;
# fastcgi_buffer_size 32k;
#}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
access_log off;
log_not_found off;
}
#}