summaryrefslogtreecommitdiffstats
path: root/roles/media/templates/nginx-include
blob: 0f74c60fcc56f7d956e5a0bc735f385bffb5486a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
rewrite ^/current/bbb-open.html$ {{ bbb_open_url }} redirect;
location /{{ emacsconf_year }}/backstage {
  auth_basic "Restricted";
  auth_basic_user_file /etc/nginx/sites-available/{{ host_name }}-{{ emacsconf_year }}-htpasswd;
  autoindex on;
  rewrite ^/{{ emacsconf_year }}/backstage/current/pad/([^/]*)$ https://{{ etherpad_server_name }}/{{ emacsconf_year }}-$1 redirect;
  rewrite ^/{{ emacsconf_year }}/backstage/current/room/([^/]*)$ https://{{ media_server_name }}/{{ emacsconf_year }}/backstage/assets/redirects/open/bbb-$1.html redirect;
  rewrite ^/{{ emacsconf_year }}/backstage/current/([^/]*)/pad/?$ https://{{ etherpad_server_name }}/{{ emacsconf_year }}-$1 redirect;
  rewrite ^/{{ emacsconf_year }}/backstage/current/([^/]*)/room/?$ https://{{ media_server_name }}/{{ emacsconf_year }}/backstage/assets/redirects/open/bbb-$1.html redirect;
	}
	location /{{ emacsconf_year }}/{{ emacsconf_id }}.ics {
           auth_basic off;
        }
        location /{{ emacsconf_year }}/schedules/ {
           auth_basic off;
        }
        {% for track in emacsconf_tracks %}
        location /{{ emacsconf_year }}/{{ emacsconf_id }}-{{ track.id }}.ics {
           auth_basic off;
        }
        {% endfor %}  
{% if media_protect_root == 'true' %}
   location /{{ emacsconf_year }} {
	    # TODO: Figure out how to make this properly controlled by the variable
      auth_basic_user_file /etc/nginx/sites-available/{{ host_name }}-{{ emacsconf_year }}-htpasswd;
      auth_basic "Restricted";
      autoindex on;
	 }
{% else %}
   location /{{ emacsconf_year }} {
      autoindex on;
   }
{% endif %}