Looks nice now
This commit is contained in:
parent
7977d297ac
commit
c930c040af
11 changed files with 97 additions and 189 deletions
34
sites-available/photos
Normal file
34
sites-available/photos
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
server_name photos.asxp.io www.photos.asxp.io;
|
||||
|
||||
root /srv/http/photos;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
# First attempt to serve request as file, then
|
||||
# as directory, then fall back to displaying a 404.
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
|
||||
fastcgi_index index.php;
|
||||
root /srv/http/photos;
|
||||
include fastcgi.conf;
|
||||
}
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/asxp.io/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/asxp.io/privkey.pem;
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf;
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
||||
|
||||
##
|
||||
# Nginx Bad Bot Blocker Includes
|
||||
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
|
||||
##
|
||||
#include /etc/nginx/bots.d/ddos.conf;
|
||||
#include /etc/nginx/bots.d/blockbots.conf;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue