merchant landing: dual-currency intro + nginx :9015
This commit is contained in:
parent
dd4a984912
commit
8bd0ec24a0
3 changed files with 504 additions and 0 deletions
24
configs/merchant-landing/nginx-landing.conf
Normal file
24
configs/merchant-landing/nginx-landing.conf
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Merchant landing — :9015 (behind Caddy — no port in Location)
|
||||
server {
|
||||
listen 9015;
|
||||
listen [::]:9015;
|
||||
server_name taler.hacktivism.ch _;
|
||||
root /var/www/merchant-landing;
|
||||
index index.html;
|
||||
|
||||
absolute_redirect off;
|
||||
port_in_redirect off;
|
||||
|
||||
location = / {
|
||||
return 302 /intro/;
|
||||
}
|
||||
location = /intro {
|
||||
return 302 /intro/;
|
||||
}
|
||||
location /intro/ {
|
||||
alias /var/www/merchant-landing/;
|
||||
}
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue