mirror of https://github.com/MISP/misp-docker
46 lines
903 B
Plaintext
46 lines
903 B
Plaintext
# web service1 config.
|
|
server {
|
|
listen 80;
|
|
listen 443 ssl http2;
|
|
server_name web;
|
|
|
|
if ($scheme != "https") {
|
|
rewrite ^ https://$host$uri permanent;
|
|
}
|
|
|
|
# Path for SSL config/key/certificate
|
|
ssl_certificate /etc/ssl/certs/nginx/misp.crt;
|
|
ssl_certificate_key /etc/ssl/certs/nginx/misp.key;
|
|
include /etc/nginx/includes/ssl.conf;
|
|
|
|
location / {
|
|
include /etc/nginx/includes/proxy.conf;
|
|
proxy_pass http://web;
|
|
}
|
|
|
|
access_log off;
|
|
error_log /var/log/nginx/error.log error;
|
|
}
|
|
|
|
# Default
|
|
server {
|
|
listen 80 default_server;
|
|
|
|
server_name _;
|
|
root /var/www/html;
|
|
|
|
charset UTF-8;
|
|
|
|
error_page 404 /backend-not-found.html;
|
|
location = /backend-not-found.html {
|
|
allow all;
|
|
}
|
|
location / {
|
|
return 404;
|
|
}
|
|
|
|
access_log off;
|
|
log_not_found off;
|
|
error_log /var/log/nginx/error.log error;
|
|
}
|