Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
funkwhale
funkwhale
Commits
e18754db
Commit
e18754db
authored
Jun 26, 2017
by
Eliot Berriot
Browse files
Merge branch 'master' into 'master'
Better with HTTPS See merge request
!1
parents
e9b2870e
85216305
Pipeline
#67
passed with stages
in 2 minutes and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
deploy/nginx.conf
View file @
e18754db
...
...
@@ -4,9 +4,29 @@ upstream funkwhale-api {
}
server
{
listen
80
;
listen
80
;
listen
[::]:80
;
server_name
demo.funkwhale.audio
;
# useful for Let's Encrypt
location
/.well-known/acme-challenge/
{
allow
all
;
}
location
/
{
return
301
https://
$host$request_uri
;
}
}
server
{
listen
443
ssl
http2
;
listen
[::]:443
ssl
http2
;
server_name
demo.funkwhale.audio
;
# TLS
ssl_protocols
TLSv1.2
;
ssl_ciphers
HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA
;
ssl_prefer_server_ciphers
on
;
ssl_session_cache
shared:SSL:10m
;
ssl_certificate
/etc/letsencrypt/live/example.com/fullchain.pem
;
ssl_certificate_key
/etc/letsencrypt/live/example.com/privkey.pem
;
# HSTS
add_header
Strict-Transport-Security
"max-age=31536000"
;
root
/srv/funkwhale/front/dist
;
location
/
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment