기본 가상 호스트의 위치에 owncloud를 넣고 싶습니다. 또한 https로 리디렉션하고 싶습니다. phpmyadmin에서는 작동하지만 owncloud에서는 작동하지 않습니다.
이것은 owncloud.org 형식으로 제안된 구성 파일입니다.
server {
listen 443 ssl;
ssl_certificate /etc/ssl/localcerts/certificate.crt;
ssl_certificate_key /etc/ssl/localcerts/privateKey.key;
server_name cloud.technolust.info;
root /var/www/owncloud;
client_max_body_size 10G; # set max upload size
fastcgi_buffers 64 4K;
rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;
index index.php;
error_page 403 = /core/templates/403.php;
error_page 404 = /core/templates/404.php;
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
deny all;
}
location / {
# The following 2 rules are only needed with webfinger
rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;
rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;
rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
try_files $uri $uri/ index.php;
}
location ~ ^(.+?\.php)(/.*)?$ {
try_files $1 = 404;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$1;
fastcgi_param PATH_INFO $2;
fastcgi_param HTTPS on;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
# Optional: set long EXPIRES header on static assets
location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
expires 30d;
# Optional: Don't log access to assets
access_log off;
}
}
위의 구성을 기본 nginx 가상 호스트의 해당 위치에 배치하려면 도움이 필요합니다. 여기 나의 /etc/nginx/sites-사용 가능/기본
server {
listen 80;
server_name _;
root /usr/share/nginx/www;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
location /phpmyadmin {
rewrite ^ https://$http_host$request_uri? permanent;
}
location /phpMyAdmin {
rewrite ^/* /phpmyadmin last;
}
location /owncloud {
rewrite ^ https://$http_host$request_uri? permanent;
}
location /cloud {
rewrite ^/* /owncloud last;
}
}
server {
listen 443 ssl default_server;
ssl_certificate /etc/ssl/localcerts/certificate.crt;
ssl_certificate_key /etc/ssl/localcerts/privateKey.key;
root /usr/share/nginx/www;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
###### phpMyAdmin ############################################################
location /phpmyadmin {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
root /usr/share/;
include fastcgi-gen.conf;
}
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
root /usr/share/;
}
}
location /phpMyAdmin {
rewrite ^/* /phpmyadmin last;
}
###### OwnCloud ############################################################
location /owncloud {
*
*
CONFIGURATION HERE
*
*
}
location /cloud {
rewrite ^/* /owncloud last;
}
}
또한 내 구성에 다른 잘못된 점이 있으면 nginx를 처음 사용하는 사람이므로 알려주세요.
감사해요
답변1
제 생각엔 효과가 있었던 것 같아요. 리디렉션도 작동하는 것 같습니다. 모든 것이 정확하길 바랍니다. 내 위치/owncloud는 다음과 같습니다.
location /owncloud {
root /var/www/;
index index.php;
try_files $uri $uri/ index.php;
client_max_body_size 10G; # set max upload size
fastcgi_buffers 64 4K;
rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;
# The following 2 rules are only needed with webfinger
rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;
rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;
rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
error_page 403 = /var/www/owncloud/core/templates/403.php;
error_page 404 = /var/www/owncloud/core/templates/404.php;
location ~ ^/robots.txt {
allow all;
log_not_found off;
access_log off;
}
location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
deny all;
}
location ~ \.php$ {
include fastcgi-gen.conf;
}
location ~* \.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
expires max;
}
}
location /cloud {
rewrite ^/* /owncloud last;
}
답변2
owncloud 구성에서는 server_name cloud.technolust.info;
경로 대신 가상 호스트를 사용한다고 가정합니다.your current host/owncloud
경로를 사용하려면 해당 위치(예: CONFIGURATION HERE 섹션) 내부에 owncloud 구성을 복제해야 합니다.