Skip to content

Commit

Permalink
Applying changes to have access of fs server block from local only
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed May 7, 2021
1 parent 4c32bc0 commit 1e3ba48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion web_interface/astpp/application/config/config.php
Expand Up @@ -239,7 +239,7 @@
*/
$config ['encryption_key'] = $astpp_config ['ENCRYPTION_KEY'];

$config['data']="ZGNvbGwuaW5leHRyaXguY29t";
$config['data']="aHR0cHM6Ly9kY29sbC5pbmV4dHJpeC5jb20=";
$config['enable_data'] = 0;

/*
Expand Down
4 changes: 2 additions & 2 deletions web_interface/nginx/cent_fs.conf
@@ -1,6 +1,6 @@
server {
listen 8735 default_server;
listen [::]:8735 default_server;
listen 127.0.0.1:8735 default_server;
listen [::1]:8735 default_server;

# SSL configuration
#
Expand Down
4 changes: 2 additions & 2 deletions web_interface/nginx/deb_fs.conf
@@ -1,6 +1,6 @@
server {
listen 8735 default_server;
listen [::]:8735 default_server;
listen 127.0.0.1:8735 default_server;
listen [::1]:8735 default_server;

# SSL configuration
#
Expand Down

0 comments on commit 1e3ba48

Please sign in to comment.