ansible/roles/web/files/vhost

53 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-04-07 15:50:58 +02:00
server {
listen 80;
listen [::]:80;
server_name binary-kitchen.de www.binary-kitchen.de binary-kitchen.com www.binary-kitchen.com binary-kitchen.net www.binary-kitchen.net binary.kitchen www.binary.kitchen;
2016-04-08 07:43:23 +02:00
location /.well-known/acme-challenge {
2016-04-07 15:50:58 +02:00
default_type "text/plain";
2016-04-08 07:43:23 +02:00
alias /var/www/acme-challenge;
2016-04-07 15:50:58 +02:00
}
location / {
return 301 https://www.binary-kitchen.de$request_uri;
}
2016-04-07 15:50:58 +02:00
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name www.binary-kitchen.de;
ssl_certificate_key /etc/nginx/ssl/www.binary-kitchen.de.key;
ssl_certificate /etc/nginx/ssl/www.binary-kitchen.de.crt;
root /var/www/kitchen;
client_max_body_size 32M;
index index.php;
2016-04-08 07:43:23 +02:00
location = / {
return 301 https://www.binary-kitchen.de/wiki/;
}
location /owncloud {
rewrite ^/owncloud(/.*)$ https://oc.binary-kitchen.de$1;
}
location ~ /wiki/(data/|conf/|bin/|inc/|install.php) {
deny all;
}
location ~ \.php(?:$|/) {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_intercept_errors on;
}
2016-04-07 15:50:58 +02:00
}