Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Odevzdávací Systém MO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MO-P
Odevzdávací Systém MO
Merge requests
!26
Project 'mj/mo-submit' was moved to 'mo-p/osmo'. Please update any links and bookmarks that may still have the old path.
Verzování statických souborů
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Verzování statických souborů
mj/assets
into
devel
Overview
1
Commits
5
Changes
8
Merged
Verzování statických souborů
Martin Mareš
requested to merge
mj/assets
into
devel
Jan 24, 2021
Overview
1
Commits
5
Changes
3
0
0
Merge request reports
Compare
version 1
version 3
19017847
Jan 24, 2021
version 2
2f6d1728
Jan 24, 2021
version 1
a92348c4
Jan 24, 2021
devel (base)
and
latest version
latest version
ebc92823
5 commits,
Jan 26, 2021
version 3
19017847
4 commits,
Jan 24, 2021
version 2
2f6d1728
4 commits,
Jan 24, 2021
version 1
a92348c4
3 commits,
Jan 24, 2021
Show latest version
3 files
+
41
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
etc/nginx.site.example
0 → 100644
+
37
−
0
View file @ ebc92823
Edit in single-file editor
Open in Web IDE
server {
listen 195.113.20.177:443 ssl;
listen [2001:718:1e03:801::b1]:443 ssl;
server_name mo.mff.cuni.cz;
ssl on;
ssl_certificate /etc/ssl/domains/mo.mff.cuni.cz/bundle.pem;
ssl_certificate_key /etc/ssl/domains/mo.mff.cuni.cz/privkey.pem;
ssl_dhparam /etc/ssl/dhparams.pem;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 5m;
client_max_body_size 1G;
### Production instance of OSMO
location /osmo {
include uwsgi_params;
uwsgi_pass unix:/akce/mo/osmo/var/osmo.sock;
}
location /osmo/static/ {
alias /akce/mo/osmo/static/;
}
location /osmo/assets/ {
location ~ ^/osmo/assets/[^/]+/(.*) {
alias /akce/mo/osmo/static/$1;
}
return 404;
}
location = /osmo/favicon.ico {
alias /akce/mo/osmo/static/favicon.ico;
}
}
Loading