Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagecell
Path: blob/master/contrib/vm/compute_node/etc/nginx/conf.d/sagecell.conf
448 views
1
server {
2
listen 8889;
3
gzip on;
4
gzip_types *;
5
root /home/{server}/sagecell;
6
location /static/ {
7
add_header Access-Control-Allow-Origin $http_origin;
8
}
9
location = /static/jsmol/php/jsmol.php {
10
# Script adds Access-Control-Allow-Origin *
11
include snippets/fastcgi-php.conf;
12
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
13
}
14
}
15
16