Added access to congif page from service page
This commit is contained in:
parent
e63a4cc086
commit
78cb41a39c
3 changed files with 36 additions and 15 deletions
|
|
@ -39,9 +39,7 @@ public class ApacheService implements WAService {
|
|||
|
||||
private ApacheStatus status;
|
||||
private ApacheInstaller installer;
|
||||
private WAServiceConfig[] config = new WAServiceConfig[]{
|
||||
new ApacheConfigVirtualHost()
|
||||
};
|
||||
private WAServiceConfig[] config;
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
|
|
@ -64,6 +62,10 @@ public class ApacheService implements WAService {
|
|||
|
||||
@Override
|
||||
public WAServiceConfig[] getConfigurations() {
|
||||
if(config == null)
|
||||
config = new WAServiceConfig[]{
|
||||
new ApacheConfigVirtualHost()
|
||||
};
|
||||
return config;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue