Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/web/templates/site.erb

Issue 5728306397708288: Added definition for eyeo.com webserver (Closed)
Patch Set: Created Dec. 5, 2013, 9:32 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « modules/web/manifests/server.pp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 server {
2 listen 80 default_server;
3 listen [::]:80 default_server;
4 server_name '<%= vhost %>';
5
6 location / {
7 rewrite (.*) https://<%= vhost %>$1 permanent;
8 }
9 }
10
11 server {
12 listen 443 ssl default_server;
13 listen [::]:443 ssl default_server;
14 ssl_certificate sites-available/adblockplus.org_sslcert.pem;
15 ssl_certificate_key sites-available/adblockplus.org_sslcert.key;
16
17 server_name '<%= vhost %>';
18
19 expires 1d;
20
21 root /var/www/<%= vhost %>;
22 index index;
23 default_type text/html;
24 }
OLDNEW
« no previous file with comments | « modules/web/manifests/server.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld