Merge branch 'master' of github.com:dkgroot/provision_sccp
This commit is contained in:
27
etc/apache2/sites-available/http-tftpboot.conf
Normal file
27
etc/apache2/sites-available/http-tftpboot.conf
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#
|
||||||
|
# ---------------- Apache 2 ( httpd ) Configuration to support the starting load of the cisco phones via HTTP.
|
||||||
|
Listen 6970
|
||||||
|
NameVirtualHost *:6970
|
||||||
|
<VirtualHost *:6970>
|
||||||
|
DocumentRoot "/tftpboot"
|
||||||
|
# DocumentRoot "/data/development/sccp/sources/tftp/tftpboot"
|
||||||
|
# server_name default
|
||||||
|
ErrorLog /var/log/httpd/tftp.error.log
|
||||||
|
CustomLog /var/log/httpd/tftp.access.log combined
|
||||||
|
# Other directives here
|
||||||
|
<Directory /tftpboot>
|
||||||
|
RewriteEngine on
|
||||||
|
RewriteBase "/"
|
||||||
|
RewriteCond "/tftpboot/%{REQUEST_FILENAME}" !-f
|
||||||
|
RewriteCond "/tftpboot/%{REQUEST_FILENAME}" !-d
|
||||||
|
RewriteRule "(.*)" "index.php?id=$1" [PT,QSA]
|
||||||
|
</Directory>
|
||||||
|
# <Directory /data/development/sccp/sources/tftp/tftpboot>
|
||||||
|
# RewriteEngine on
|
||||||
|
# RewriteBase "/"
|
||||||
|
# RewriteCond "/data/development/sccp/sources/tftp/tftpboot/%{REQUEST_FILENAME}" !-f
|
||||||
|
# RewriteCond "/data/development/sccp/sources/tftp/tftpboot/%{REQUEST_FILENAME}" !-d
|
||||||
|
# RewriteRule "(.*)" "index.php?id=$1" [PT,QSA]
|
||||||
|
# </Directory>
|
||||||
|
|
||||||
|
</VirtualHost>
|
51
etc/nginx/sites-available/nginx-tftpboot.conf
Normal file
51
etc/nginx/sites-available/nginx-tftpboot.conf
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
#
|
||||||
|
# Nginx Configuration to support the starting load of the Cisco phones via HTTP
|
||||||
|
#
|
||||||
|
# "Php-fpm" installation and configuration is required.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
server {
|
||||||
|
listen 6970;
|
||||||
|
server_name tftp.servername.org;
|
||||||
|
#root /tftpboot;
|
||||||
|
root /tftpboot;
|
||||||
|
|
||||||
|
# Normal Logging
|
||||||
|
#access_log /var/log/nginx/tftp.access.log;
|
||||||
|
#error_log /var/log/nginx/tftp.error.log;
|
||||||
|
|
||||||
|
# Debug Rewrite Rules
|
||||||
|
rewrite_log on;
|
||||||
|
access_log /var/log/nginx/tftp.access.log;
|
||||||
|
error_log /var/log/nginx/tftp.error.log notice;
|
||||||
|
|
||||||
|
index index.php;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
#rewrite ^([^.]*[^/])$ $1/ permanent;
|
||||||
|
#try_files $uri $uri/ /index.php?id=$query_string;
|
||||||
|
rewrite ^/(.*)$ /index.php?id=$1 last;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
proxy_read_timeout 61;
|
||||||
|
fastcgi_read_timeout 61;
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
fastcgi_pass unix:/var/run/php-fpm.sock;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
|
include fastcgi_params;
|
||||||
|
}
|
||||||
|
# Deny access to .htaccess
|
||||||
|
location ~ /\.ht {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
error_page 404 /;
|
||||||
|
|
||||||
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
location = /50x.html {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
}
|
||||||
|
}
|
@@ -37,8 +37,12 @@ if (empty($path['languages'])) {$path['languages'] = $path['tftp']. '/locales/la
|
|||||||
if (empty($path['deflanguages'])) {$path['deflanguages'] = $path['languages']. '/English_United_States';}
|
if (empty($path['deflanguages'])) {$path['deflanguages'] = $path['languages']. '/English_United_States';}
|
||||||
$locale_list = array('-dictionary.', 'dictionary-ext.', '-dictionary.utf-8.', '-kate.xml', '-font.xml', '-font.dat','-tones.xml',
|
$locale_list = array('-dictionary.', 'dictionary-ext.', '-dictionary.utf-8.', '-kate.xml', '-font.xml', '-font.dat','-tones.xml',
|
||||||
'be-sccp.jar', 'tc-sccp.jar', 'td-sccp.jar', 'ipc-sccp.jar', 'mk-sccp.jar', '_locale.loads', 'i-button-help.xml');
|
'be-sccp.jar', 'tc-sccp.jar', 'td-sccp.jar', 'ipc-sccp.jar', 'mk-sccp.jar', '_locale.loads', 'i-button-help.xml');
|
||||||
|
if ($print_debug == 'on') {
|
||||||
print_r($path);
|
print_r('<br> Init Pach: <br>');
|
||||||
|
print_r($path);
|
||||||
|
print_r('<br> Request: <br>');
|
||||||
|
print_r($request);
|
||||||
|
}
|
||||||
$req_file_full_path = '' ;
|
$req_file_full_path = '' ;
|
||||||
|
|
||||||
if (!empty($req_file)) {
|
if (!empty($req_file)) {
|
||||||
|
Reference in New Issue
Block a user