打开/关闭搜索
搜索
打开/关闭菜单
通知
打开/关闭个人菜单
查看“Mediawiki/ShortURL”的源代码
来自OSSmedia
查看
阅读
查看源代码
查看历史
associated-pages
页面
讨论
更多操作
←
Mediawiki/ShortURL
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
Localsettings $wgArticlePath = "/wiki/$1"; $wgUsePathInfo = true; nginx<syntaxhighlight lang="nginx"> server { server_name ossmedia.cn; root /var/www/mediawiki; index index.php; client_max_body_size 5m; client_body_timeout 60; location / { try_files $uri $uri/ @rewrite; } location @rewrite { rewrite ^/(.*)$ /index.php?title=$1&$args; } location ^~ /maintenance/ { return 403; } location /rest.php { try_files $uri $uri/ /rest.php?$args; } location ~ \.php$ { include fastcgi_params; fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; fastcgi_param SCRIPT_FILENAME $request_filename; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { try_files $uri /index.php; expires max; log_not_found off; } location = /_.gif { expires max; empty_gif; } location ^~ /cache/ { deny all; } location /dumps { root /var/www/mediawiki/local; autoindex on; } } </syntaxhighlight>
返回
Mediawiki/ShortURL
。