You need to sign in or sign up before continuing.
Newer
Older
events {
worker_connections 1024;
}
http {
include mime.types;
sendfile on;
server {
listen [::]:80;
listen 443;
listen [::]:443;
# if the requested hostname does match one of the following, check the location block.
server_name localhost tbasti2s.l3montree.com tbasti2s.l3montree.education;
server {
# listen on port 80 and 443 for ipv4 and ipv6 requests
listen 80;
listen [::]:80;
listen 443;
listen [::]:443;
# there is no server name provided here - match anything else
location / {
# return the error index.html
root /www/data/error;
}
}